master
nathaniel smith 2015-07-31 21:07:51 -07:00
parent 63b002eb13
commit 3ce6cc15b0
2 changed files with 6 additions and 3 deletions

View File

@ -19,7 +19,7 @@ def default_p(username):
def bounded_find(path):
# find might return 1 but still have worked fine.
return find(path, "-maxdepth" "3", _ok_code=[0,1])
return find(path, "-maxdepth", "3", _ok_code=[0,1])
def guarded_mtime(path):
try:

View File

@ -1,7 +1,10 @@
def slurp(file_path):
contents = None
with open(file_path, 'r') as f:
contents = f.read()
try:
with open(file_path, 'r') as f:
contents = f.read()
except FileNotFoundError:
pass
return contents
def thread(initial, *fns):