From 58ca9122cce463bcd75474944b1b353e355f729d Mon Sep 17 00:00:00 2001
From: Greg Price <price@mit.edu>
Date: Thu, 29 Oct 2009 02:03:29 -0400
Subject: [PATCH] fix a syntax error from my r2526

svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2711
---
 code/main.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/main.py b/code/main.py
index c791e82..a494046 100755
--- a/code/main.py
+++ b/code/main.py
@@ -230,7 +230,7 @@ console will suffer artifacts.
         d['err'] = err
         if err:
             for field, value in fields.items():
-                setattr(d['defaults'], field, value))
+                setattr(d['defaults'], field, value)
         else:
             d['new_machine'] = parsed_fields['name']
         return d
-- 
1.7.9.5