Commit d11ab459 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Request the edge ID as a string, not as integer.

parent fd6d2c0d
...@@ -153,7 +153,7 @@ class TodoList(object): ...@@ -153,7 +153,7 @@ class TodoList(object):
""" """
new_id = 1 new_id = 1
while self._depgraph.has_edge_id(new_id): while self._depgraph.has_edge_id('%d' % new_id):
new_id += 1 new_id += 1
return '%d' % new_id return '%d' % new_id
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment