changeset 87:d4452281f42a

fix missing ]
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 12 Jan 2011 11:30:26 -0800
parents 2616a5f49bd3
children 2a55644b9948
files autobot/template.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/autobot/template.py	Wed Jan 12 11:29:00 2011 -0800
+++ b/autobot/template.py	Wed Jan 12 11:30:26 2011 -0800
@@ -54,8 +54,8 @@
         else:
             raise AssertionError("No factory provided")
 
-        # stringify
-        variables['factories'] = ' '.join([i for i in variables['factories'])
+        # stringify for .ini file
+        variables['factories'] = ' '.join([i for i in variables['factories']])
 
     def create(self, output, variables):
         command = ['buildbot', 'create-master', output]