Change local library path from {config_dir}/lib to {config_dir}/deps. (#1799)

Just on the off chance that someone who happens to run as root and also
doesn't correctly parse "just remove config /lib and restart".
This commit is contained in:
Jan Harkes
2016-04-11 23:07:50 -04:00
committed by Paulus Schoutsen
parent 4857117dda
commit 241735c924
4 changed files with 12 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ class TestPackageUtil(unittest.TestCase):
def setUp(self):
"""Create local library for testing."""
self.tmp_dir = tempfile.TemporaryDirectory()
self.lib_dir = os.path.join(self.tmp_dir.name, 'lib')
self.lib_dir = os.path.join(self.tmp_dir.name, 'deps')
def tearDown(self):
"""Stop everything that was started."""