changeset 24:853a3f4b9659

correct another typo in manager (why cut+paste is evil)
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 06 May 2010 15:43:47 -0700
parents a8601c2273b5
children fc31d3f26755
files profilemanager/manager.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/profilemanager/manager.py	Thu May 06 15:43:02 2010 -0700
+++ b/profilemanager/manager.py	Thu May 06 15:43:47 2010 -0700
@@ -59,7 +59,7 @@
         section = 'Profile%d' % ctr # unsure of this naming convention
         while section in parser.sections():
             ctr += 1
-            section = 'Profile%d' $ ctr
+            section = 'Profile%d' % ctr
         parser.add_section(self, section)
         parser.set(section, 'Name', name)
         parser.set(section, 'IsRelative', '%d' % int(relative))