Updated todo module to agnostic user path
This commit is contained in:
parent
250c0135e6
commit
66ecf73760
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class Module(bumblebee.engine.Module):
|
||||||
def count_items(filename):
|
def count_items(filename):
|
||||||
try:
|
try:
|
||||||
i=-1
|
i=-1
|
||||||
with open('/home/codingo/Documents/todo.txt') as f:
|
with open('~/Documents/todo.txt') as f:
|
||||||
for i, l in enumerate(f):
|
for i, l in enumerate(f):
|
||||||
pass
|
pass
|
||||||
return i+1
|
return i+1
|
||||||
|
|
Loading…
Reference in a new issue