Commit 0599cd22 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Use range() instead of xrange().

parent 99fd8af8
......@@ -105,7 +105,7 @@ class IcalPrinter(Printer):
"""
return ''.join(
random.choice(string.ascii_letters + string.digits)
for i in xrange(p_length))
for i in range(p_length))
uid = p_todo.tag_value('ical')
if not uid:
......
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