Revision: 122
Author: jprantan
Date: Mon Jun 28 02:50:35 2010
Log: Fixed bug in error handling.
http://code.google.com/p/robotframework-mabot/source/detail?r=122
Modified:
/trunk/src/mabot/model/model.py
=======================================
--- /trunk/src/mabot/model/model.py Mon Jun 28 02:49:03 2010
+++ /trunk/src/mabot/model/model.py Mon Jun 28 02:50:35 2010
@@ -465,7 +465,7 @@
def _resolve_keywords_results(self, other):
try:
test = self._load_test_from_datasource()
- except IOError, message:
+ except IOError, error:
msg = 'Could not check correct model from data source!\n%s'
tkMessageBox('Loading Data Source Failed', msg % (error))
return