Revision: 3208
Author: janne.t.harkonen
Date: Thu May 6 01:09:48 2010
Log: use correct attribute name
http://code.google.com/p/robotframework/source/detail?r=3208
Modified:
/trunk/src/robot/utils/error.py
=======================================
--- /trunk/src/robot/utils/error.py Thu May 6 00:51:55 2010
+++ /trunk/src/robot/utils/error.py Thu May 6 01:09:48 2010
@@ -51,7 +51,7 @@
"""Returns error message and details of the last occurred exception.
"""
dets = ErrorDetails()
- return dets.message, dets.details
+ return dets.message, dets.traceback
class ErrorDetails(object):