[Python-checkins] r58274 - tracker/instances/python-dev/detectors/audit2to3.py

paul.dubois python-checkins at python.org
Thu Sep 27 19:39:58 CEST 2007


Author: paul.dubois
Date: Thu Sep 27 19:39:58 2007
New Revision: 58274

Modified:
   tracker/instances/python-dev/detectors/audit2to3.py
Log:
Fix initialization of componentIDS.


Modified: tracker/instances/python-dev/detectors/audit2to3.py
==============================================================================
--- tracker/instances/python-dev/detectors/audit2to3.py	(original)
+++ tracker/instances/python-dev/detectors/audit2to3.py	Thu Sep 27 19:39:58 2007
@@ -7,6 +7,7 @@
        assigned.
     '''
     # nodeid will be None if this is a new node
+    componentIDS=None
     if nodeid is not None:
         componentIDS = cl.get(nodeid, 'components')
     if newvalues.has_key('components'):


More information about the Python-checkins mailing list