Revision: 3135
Author: KariHusa
Date: Tue May  4 03:00:27 2010
Log: Cleanup
http://code.google.com/p/robotframework/source/detail?r=3135

Modified:
 /trunk/src/robot/running/keywords.py

=======================================
--- /trunk/src/robot/running/keywords.py        Tue May  4 02:44:41 2010
+++ /trunk/src/robot/running/keywords.py        Tue May  4 03:00:27 2010
@@ -33,7 +33,7 @@
             if error:
                 errors.append(error)
                 if not error.cont:
-                    return self._report_errors(errors)
+                    break
         return self._report_errors(errors)

     def _run_with_error_handling(self, kw, output, namespace):
@@ -74,13 +74,6 @@
     def run(self, output, namespace):
         self._run(output, namespace)

-    def _run_with_error_handling(self, kw, output, namespace):
-        try:
-            kw.run(output, namespace)
-            return None
-        except ExecutionFailed, err:
-            return err
-
     def _report_errors(self, errors):
         if errors:
             raise MultipleErrors(errors)

Reply via email to