Revision: 3427
Author: pekka.klarck
Date: Mon May 24 08:29:36 2010
Log: empty string is better default than None here
http://code.google.com/p/robotframework/source/detail?r=3427
Modified:
/trunk/src/robot/parsing/model.py
=======================================
--- /trunk/src/robot/parsing/model.py Mon May 24 07:35:24 2010
+++ /trunk/src/robot/parsing/model.py Mon May 24 08:29:36 2010
@@ -429,7 +429,7 @@
try:
self.keyword = content[len(self.assign)]
except IndexError:
- self.keyword = None
+ self.keyword = ''
self.args = content[len(self.assign)+1:]
self.comment = comment