summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorslis <lis.slawek@gmail.com>2014-03-17 07:42:01 +0100
committerslis <lis.slawek@gmail.com>2014-03-17 07:42:01 +0100
commitc5baf551987e2fb412caa396ae34f7f4341ad819 (patch)
tree040b89b801cf43f6bbfefbefdb5ffa52368eb504 /pym
parentc6286bab8c4e96a7e54e05ab26244ca648ae9787 (diff)
downloadgentoolkit-c5baf551987e2fb412caa396ae34f7f4341ad819.tar.gz
Fix #504654 - problem with encoding for non-ascii filenames
Diffstat (limited to 'pym')
-rw-r--r--pym/gentoolkit/revdep_rebuild/stuff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/revdep_rebuild/stuff.py b/pym/gentoolkit/revdep_rebuild/stuff.py
index cc3da7b..7a8373d 100644
--- a/pym/gentoolkit/revdep_rebuild/stuff.py
+++ b/pym/gentoolkit/revdep_rebuild/stuff.py
@@ -22,7 +22,7 @@ def call_program(args):
subp = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = subp.communicate()
stdout = stdout.decode('utf-8')
- return str(stdout)
+ return stdout
def scan(params, files, max_args, logger):