[Python-checkins] r52936 - tracker/importer/sfxml2roundup.py tracker/importer/sfxmlhandlers.py

erik.forsberg python-checkins at python.org
Wed Dec 6 22:20:39 CET 2006


Author: erik.forsberg
Date: Wed Dec  6 22:20:39 2006
New Revision: 52936

Modified:
   tracker/importer/sfxml2roundup.py
   tracker/importer/sfxmlhandlers.py
Log:

Removed 'platforms', as it's no longer in the schema.


Modified: tracker/importer/sfxml2roundup.py
==============================================================================
--- tracker/importer/sfxml2roundup.py	(original)
+++ tracker/importer/sfxml2roundup.py	Wed Dec  6 22:20:39 2006
@@ -39,7 +39,6 @@
                 # No handler for superseder
                 # No handler for type
                 sfxmlhandlers.ComponentHandler(db, 'category', 'components'),
-                sfxmlhandlers.PlatformsHandler(db, None, 'platforms'),
                 sfxmlhandlers.VersionsHandler(db, None, 'versions'),
                 sfxmlhandlers.SeverityHandler(db, None, 'severity'),
                 sfxmlhandlers.PriorityHandler(db, 'priority', 'priority'),

Modified: tracker/importer/sfxmlhandlers.py
==============================================================================
--- tracker/importer/sfxmlhandlers.py	(original)
+++ tracker/importer/sfxmlhandlers.py	Wed Dec  6 22:20:39 2006
@@ -353,9 +353,6 @@
 class DependencyHandler(EmptyListReturner):
     pass
 
-class PlatformsHandler(EmptyListReturner):
-    pass
-    
 class StatusHandler(SFXMLHandler):
     def handle(self, fields, roundupdata):
         return


More information about the Python-checkins mailing list