From 5da5f0c9fbce996d6e66c2ff9e925c047aeced85 Mon Sep 17 00:00:00 2001 From: Edoardo Putti Date: Tue, 21 Feb 2017 11:15:23 +0100 Subject: [PATCH] fix the path attribute implementation for Authorit --- models/authority.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/authority.py b/models/authority.py index 666e37c..507efe8 100755 --- a/models/authority.py +++ b/models/authority.py @@ -25,7 +25,7 @@ class Authority(Model): @property def path(self): - return os.path.join(self.ca_dir, self.ca_id) + return os.path.join(MANAGER_PATH, self.ca_id) def generate(self): raise NotImplementedError()