am 1b46b2fe
: Fix insertkeys.py to resolve keys.conf path entries in a portable way
* commit '1b46b2fe4723b0dda74c2f66a09df8259508fd4b': Fix insertkeys.py to resolve keys.conf path entries in a portable way
This commit is contained in:
commit
81cdd6c6b7
1 changed files with 2 additions and 1 deletions
|
@ -87,7 +87,8 @@ class ParseConfig(ConfigParser.ConfigParser):
|
|||
if tag in keyMap:
|
||||
sys.exit("Duplicate tag detected " + tag)
|
||||
|
||||
path = os.path.join(key_directory, self.get(tag, option))
|
||||
tag_path = os.path.expandvars(self.get(tag, option))
|
||||
path = os.path.join(key_directory, tag_path)
|
||||
|
||||
keyMap[tag] = GenerateKeys(path)
|
||||
|
||||
|
|
Loading…
Reference in a new issue