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

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

* commit '81cdd6c6':
  Fix insertkeys.py to resolve keys.conf path entries in a portable way
parents bcefbf56 81cdd6c6
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