fixing bug in helpers.is_path

This commit is contained in:
2019-02-20 12:39:03 -05:00
parent b0d7d30cfc
commit 667d2ccd05

View File

@@ -40,4 +40,4 @@ def get_punc_after(word):
def is_path(string):
return '/' in string and Path(string).exists()
return Path(string).exists()