Skip to content
Snippets Groups Projects
Commit 81cdd6c6 authored by Richard Haines's avatar Richard Haines Committed by Android Git Automerger
Browse files

am 1b46b2fe: Fix insertkeys.py to resolve keys.conf path entries in a portable way

* commit '1b46b2fe':
  Fix insertkeys.py to resolve keys.conf path entries in a portable way
parents 553bafef 1b46b2fe
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
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