Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/creator.py
diff options
context:
space:
mode:
authorisen <isen@isen-desktop.(none)>2009-10-08 01:49:24 (GMT)
committer isen <isen@isen-desktop.(none)>2009-10-08 01:49:24 (GMT)
commit69f4c73764e1e2debc185587e62c26b0ccb6520b (patch)
tree439a10dcd63e59e04cbbb75a2a35524367363839 /tutorius/creator.py
parent94eed6bd64b048e6234b7bfccd0f4b39d3e955a3 (diff)
426452 OK. works only with a list of tail position.
Diffstat (limited to 'tutorius/creator.py')
-rw-r--r--tutorius/creator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorius/creator.py b/tutorius/creator.py
index 7455ecb..7463fa3 100644
--- a/tutorius/creator.py
+++ b/tutorius/creator.py
@@ -395,7 +395,7 @@ class EditToolBox(gtk.Window):
def _list_prop_changed(self, widget, evt, action, propname, idx):
try:
- getattr(action, propname)[idx] = int(widget.get_text())
+ getattr(action, propname)[idx] = eval(widget.get_text())
except ValueError:
widget.set_text(str(getattr(action, propname)[idx]))
self.__parent._creator._action_refresh_cb(None, None, action)