From 0be84fd6b96c170db6020b5aed1e962d64ffedda Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sat, 1 Aug 2015 14:49:15 +0200 Subject: fix tutils imports --- netlib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'netlib/utils.py') 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 -- cgit v1.2.3