summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-07-09 10:20:59 -0300
committerJohan Dahlin <johan@gnome.org>2010-07-09 10:20:59 -0300
commit0a22a0b3190df11944bc4b4848c8b4b1463eb7de (patch)
tree7238f9dc53c3e7c9c43bfd084438865b8197939d
parent11acbe806c92640df82f00392c6c1d0c7c3cb972 (diff)
downloadgobject-introspection-0a22a0b3190df11944bc4b4848c8b4b1463eb7de.tar.gz
Print the command line instead of a python list
-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)