# HG changeset patch # User Jeff Hammel # Date 1279756594 25200 # Node ID b344537797de3f2c2b43a66dc188373fb58ba77a # Parent 0c0ade65b9f9b3ea506faba99cd9d789c437bb60 when passing a string, should not be in a list diff -r 0c0ade65b9f9 -r b344537797de gut/main.py --- a/gut/main.py Wed Jul 21 16:37:23 2010 -0700 +++ b/gut/main.py Wed Jul 21 16:56:34 2010 -0700 @@ -159,7 +159,7 @@ os.chdir(self.root()) for b in self.branches: call(['git', 'checkout', b]) - call(['patch -p1 < %s' % diff]) + call('patch -p1 < %s' % diff) call(['git', 'commit', '-a', '-F', log]) call(['git', 'push', 'origin', b]) if self.remote: