Browse Source

fix the path attribute implementation for Authorit

master
Edoardo Putti 8 years ago
parent
commit
5da5f0c9fb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/authority.py

+ 1
- 1
models/authority.py View File

@ -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()


Loading…
Cancel
Save