[Checkins] SVN: GenericSetup/trunk/tool.py Explicitly use the base profile for the import ZMI screen, since the bbb methods use _import_context_id which is no longer set.

Wichert Akkerman wichert at wiggy.net
Fri Jul 6 06:52:29 EDT 2007


Log message for revision 77498:
  Explicitly use the base profile for the import ZMI screen, since the bbb methods use _import_context_id which is no longer set.

Changed:
  U   GenericSetup/trunk/tool.py

-=-
Modified: GenericSetup/trunk/tool.py
===================================================================
--- GenericSetup/trunk/tool.py	2007-07-06 03:21:34 UTC (rev 77497)
+++ GenericSetup/trunk/tool.py	2007-07-06 10:52:26 UTC (rev 77498)
@@ -481,7 +481,9 @@
         else:
             steps_run = []
             for step_id in ids:
-                result = self.runImportStep(step_id, run_dependencies)
+                result = self.runImportStepFromProfile(
+                                    self.getBaselineContextID(),
+                                    step_id, run_dependencies)
                 steps_run.extend(result['steps'])
                 messages.update(result['messages'])
 



More information about the Checkins mailing list