rempips: fix todo path

Signed-off-by: John McMaster <johndmcmaster@gmail.com>
This commit is contained in:
John McMaster 2018-12-19 14:25:35 -08:00
parent e7a1d2a217
commit 92e728a1a1
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ ignpip = set()
todo = set()
print("Loading todo from ../todo.txt.")
with open("../todo.txt", "r") as f:
with open("../../todo.txt", "r") as f:
for line in f:
line = tuple(line.strip().split("."))
verbose and print('todo', line)