Skip to content

Commit 758c231

Browse files
alerquechrissimpkins
authored andcommitted
Allow usage on named pipes, not just ordinary files
1 parent 4e243d9 commit 758c231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fdiff/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def file_exists(path):
99
"""Validates file path as existing local file"""
10-
return os.path.isfile(path)
10+
return os.path.exists(path)
1111

1212

1313
def get_file_modtime(path):

0 commit comments

Comments
 (0)