# HG changeset patch # User Jeff Hammel # Date 1391552837 28800 # Node ID fd50f457185ce6f5893a24eb2d45a263d29e652c # Parent 5ab1df94cc8d820dda2a5eddb96abb8e607ce0a6 STUB: python/install_config.py diff -r 5ab1df94cc8d -r fd50f457185c python/install_config.py --- a/python/install_config.py Mon Feb 03 13:29:12 2014 -0800 +++ b/python/install_config.py Tue Feb 04 14:27:17 2014 -0800 @@ -37,7 +37,7 @@ def execute(*commands, **kwargs): """execute a series of commands""" for command in commands: - print (subprocess.list2cmdline(' '.join(command))) + print (subprocess.list2cmdline(command)) code = subprocess.call(command, **kwargs) if code: raise subprocess.CalledProcessError(code, command) @@ -71,7 +71,7 @@ @classmethod def name(cls): return cls.__name__ - __str__ = name + __str__ = name # XXX does not work! :( def __call__(self): execute(*self.commands)