aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'libpathod/utils.py')
-rw-r--r--libpathod/utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/libpathod/utils.py b/libpathod/utils.py
index 1475500a..9bd2812e 100644
--- a/libpathod/utils.py
+++ b/libpathod/utils.py
@@ -127,8 +127,3 @@ def daemonize(stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'): # pra
os.dup2(si.fileno(), sys.stdin.fileno())
os.dup2(so.fileno(), sys.stdout.fileno())
os.dup2(se.fileno(), sys.stderr.fileno())
-
-
-def matchpath(path, spec):
- if path == spec or path.startswith(spec + "/"):
- return True