Skip to content
Snippets Groups Projects
Commit 601f08fa authored by Aurélien Dunand's avatar Aurélien Dunand Committed by Seblu
Browse files

Fix typo in var name

parent e6a5d98e
No related branches found
No related tags found
No related merge requests found
......@@ -422,7 +422,7 @@ class RepositoryManager(object):
os.mkdir(self.cache_path)
# ensure directories are avaiblable
if not os.access(self.cache_path, os.W_OK | os.X_OK):
raise Exception("%s is not writable or executable" % t_path)
raise Exception("%s is not writable or executable" % self.cache_path)
debug("Repository cache is in %s" % self.cache_path)
def __del__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment