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:
committed by
Paulus Schoutsen
parent
4857117dda
commit
241735c924
@@ -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."""
|
||||
|
||||
Reference in New Issue
Block a user