From f0fbfde03c2a0c8acdaf300de178e5966756f57b Mon Sep 17 00:00:00 2001 From: Greg Brockman Date: Tue, 23 Mar 2010 04:11:37 -0400 Subject: [PATCH] Should not try to join on a string... heh --- zcommit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'], -- 2.45.1