Revision: 362fa54db9b4
Branch: default
Author: Pekka Klärck
Date: Fri Oct 25 09:43:31 2013 UTC
Log: fixed syntax jython 2.5 was not happy about. fixes teh build.
http://code.google.com/p/robotframework/source/detail?r=362fa54db9b4
Modified:
/src/robot/reporting/resultwriter.py
=======================================
--- /src/robot/reporting/resultwriter.py Thu Oct 24 11:35:16 2013 UTC
+++ /src/robot/reporting/resultwriter.py Fri Oct 25 09:43:31 2013 UTC
@@ -114,9 +114,9 @@
if self._result is None:
include_keywords = bool(self._settings.log or
self._settings.output)
flattened = self._settings.flatten_keywords
- self._result = ExecutionResult(*self._sources,
-
include_keywords=include_keywords,
- flattened_keywords=flattened)
+ self._result =
ExecutionResult(include_keywords=include_keywords,
+ flattened_keywords=flattened,
+ *self._sources)
self._result.configure(self._settings.status_rc,
self._settings.suite_config,
self._settings.statistics_config)
--
---
You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.