aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/utils.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-01 14:49:15 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-01 14:49:15 +0200
commit0be84fd6b96c170db6020b5aed1e962d64ffedda (patch)
tree58fca864d8fc47b2c615f483801374841401928a /netlib/utils.py
parenta837230320378d629ba9f25960b1dfd25c892ad9 (diff)
downloadmitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.tar.gz
mitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.tar.bz2
mitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.zip
fix tutils imports
Diffstat (limited to 'netlib/utils.py')
-rw-r--r--netlib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/utils.py b/netlib/utils.py
index 39354605..35ea0ec7 100644
--- a/netlib/utils.py
+++ b/netlib/utils.py
@@ -130,7 +130,7 @@ class Data(object):
This function will raise ValueError if the path does not exist.
"""
- fullpath = os.path.join(self.dirname, path)
+ fullpath = os.path.join(self.dirname, '../test/', path)
if not os.path.exists(fullpath):
raise ValueError("dataPath: %s does not exist." % fullpath)
return fullpath