Skip to content
Snippets Groups Projects
Commit b0b31df9 authored by Houzefa Abbasbhay's avatar Houzefa Abbasbhay :slight_smile:
Browse files

Backed out changeset 3bf5b1fd4bce (code fmt)

(Strange 2to3 output...)
parent 35418ac5
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@
def create_autotodo(folder, todolist):
with open('autotodo', 'w+') as f:
for tag, info in list(todolist.items()):
for tag, info in todolist.items():
f.write("%s\n%s\n\n" % (tag, '=' * len(tag)))
write_info(f, info, folder)
......@@ -93,7 +93,7 @@
(root, ext) = os.path.splitext(name)
if ext in exts:
file_info = scan_file(os.path.join(dirname, name), tags)
for tag, info in list(file_info.items()):
for tag, info in file_info.items():
if info:
res[tag].extend(info)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment