From: Greg Brockman Date: Tue, 23 Mar 2010 08:11:37 +0000 (-0400) Subject: Should not try to join on a string... heh X-Git-Url: http://andersk.mit.edu/gitweb/zcommit.git/commitdiff_plain/f0fbfde03c2a0c8acdaf300de178e5966756f57b?ds=sidebyside Should not try to join on a string... heh --- diff --git a/zcommit.py b/zcommit.py index b96cf99..cc9fec1 100755 --- a/zcommit.py +++ b/zcommit.py @@ -76,7 +76,7 @@ class Application(object): if c.get('modified'): actions.append('Modified: %s\n' % ', '.join(c['modified'])) if not actions: - actions = 'Something weird happened... could not figure out what action to take' + actions.append('Something weird happened... could not figure out what action to take') info = {'name' : c['author']['name'], 'email' : c['author']['email'], 'message' : c['message'],