]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

backend: Support utf-8 command line arguments
authorTomas Babej <tomasbabej@gmail.com>
Sat, 7 Jan 2017 18:26:25 +0000 (19:26 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Sat, 7 Jan 2017 18:26:25 +0000 (19:26 +0100)
tasklib/backends.py

index fd3069c583aebc011222e28c096e3e38b026b502..440cfe465de49b17f1aa3dd5a77e234144966adc 100644 (file)
@@ -132,7 +132,7 @@ class TaskWarrior(Backend):
         overrides.update(config_override or dict())
         for item in overrides.items():
             command_args.append('rc.{0}={1}'.format(*item))
-        command_args.extend(map(six.text_type, args))
+        command_args.extend([x.decode('utf-8') for x in args])
         return command_args
 
     def _get_version(self):
@@ -264,7 +264,8 @@ class TaskWarrior(Backend):
                         return_all=False):
         command_args = self._get_command_args(
             args, config_override=config_override)
-        logger.debug(' '.join(command_args))
+        logger.debug(u' '.join(command_args))
+
         p = subprocess.Popen(command_args, stdout=subprocess.PIPE,
                              stderr=subprocess.PIPE)
         stdout, stderr = [x.decode('utf-8') for x in p.communicate()]