[Neo-report] r1930 gregory - /trunk/neo/admin/handler.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Mar 8 23:13:47 CET 2010


Author: gregory
Date: Mon Mar  8 23:13:46 2010
New Revision: 1930

Log:
Bug fix: New storage node was not assigned to local variable.

Modified:
    trunk/neo/admin/handler.py

Modified: trunk/neo/admin/handler.py
==============================================================================
--- trunk/neo/admin/handler.py [iso-8859-1] (original)
+++ trunk/neo/admin/handler.py [iso-8859-1] Mon Mar  8 23:13:46 2010
@@ -169,7 +169,7 @@
             for uuid, state in row:
                 node = nm.getByUUID(uuid)
                 if node is None:
-                    nm.createStorage(uuid=uuid)
+                    node = nm.createStorage(uuid=uuid)
                 pt.setCell(offset, node, state)
         pt.log()
 





More information about the Neo-report mailing list