diff options
author | Johan Dahlin <johan@gnome.org> | 2010-07-09 10:20:59 -0300 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2010-07-09 10:20:59 -0300 |
commit | 0a22a0b3190df11944bc4b4848c8b4b1463eb7de (patch) | |
tree | 7238f9dc53c3e7c9c43bfd084438865b8197939d /giscanner/dumper.py | |
parent | 11acbe806c92640df82f00392c6c1d0c7c3cb972 (diff) |
Print the command line instead of a python list
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r-- | giscanner/dumper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py index 78b44e5..505465e 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) |