[Checkins] SVN: cc.gettext/trunk/ Fixed assignment bug lying in wait.

Nathan Yergler nathan at yergler.net
Wed Aug 22 13:48:22 EDT 2007


Log message for revision 79137:
  Fixed assignment bug lying in wait.

Changed:
  U   cc.gettext/trunk/CHANGES.txt
  U   cc.gettext/trunk/cc/gettext/__init__.py
  U   cc.gettext/trunk/setup.py

-=-
Modified: cc.gettext/trunk/CHANGES.txt
===================================================================
--- cc.gettext/trunk/CHANGES.txt	2007-08-22 17:47:14 UTC (rev 79136)
+++ cc.gettext/trunk/CHANGES.txt	2007-08-22 17:48:22 UTC (rev 79137)
@@ -1,14 +1,19 @@
+Development
+===========
+
+* Fixed bug lying in wait (mis-named multiple assignment)
+
 0.6
 ===
 
-Use python-gettext instead of forking a process to run msgfmt.
+* Use python-gettext instead of forking a process to run msgfmt.
 
 0.5.1
 =====
 
-Attempt to create the mo_path if it does not exist.
+* Attempt to create the mo_path if it does not exist.
 
 0.5
 ===
 
-Initial public release.
+* Initial public release.

Modified: cc.gettext/trunk/cc/gettext/__init__.py
===================================================================
--- cc.gettext/trunk/cc/gettext/__init__.py	2007-08-22 17:47:14 UTC (rev 79136)
+++ cc.gettext/trunk/cc/gettext/__init__.py	2007-08-22 17:48:22 UTC (rev 79137)
@@ -54,7 +54,7 @@
 
     def __init__(self, buildout, name, options):
 
-        self.name, self.buildout, self.options = buildout, name, options
+        self.build, self.name, self.options = buildout, name, options
         
         # perform sanity checking on parameters
         if 'po_path' not in options:

Modified: cc.gettext/trunk/setup.py
===================================================================
--- cc.gettext/trunk/setup.py	2007-08-22 17:47:14 UTC (rev 79136)
+++ cc.gettext/trunk/setup.py	2007-08-22 17:48:22 UTC (rev 79137)
@@ -31,7 +31,6 @@
                         'zc.buildout',
                         'python-gettext',
                         ],
-    setup_requires=['python-gettext'],
 
     entry_points = {'zc.buildout':['msgfmt = cc.gettext:MsgFmtRecipe'],
                     },



More information about the Checkins mailing list