summaryrefslogtreecommitdiff
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r--giscanner/dumper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 78b44e5b..505465e8 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -173,7 +173,7 @@ class DumpCompiler(object):
"Could not find c source file: %s" % (source, ))
args.extend(list(sources))
if not self._options.quiet:
- print "g-ir-scanner: compile: %r" % (args, )
+ print "g-ir-scanner: compile: %r" % (' '.join(args), )
subprocess.check_call(args)
def _link(self, output, *sources):
@@ -231,7 +231,7 @@ class DumpCompiler(object):
args.extend(list(sources))
if not self._options.quiet:
- print "g-ir-scanner: link: %r" % (args, )
+ print "g-ir-scanner: link: %r" % (' '.join(args), )
subprocess.check_call(args)