Skip to content

Commit

Permalink
amended fix for #285 fixing syntax do to the way the import is done
Browse files Browse the repository at this point in the history
  • Loading branch information
jimklo committed May 24, 2015
1 parent 37c9383 commit 33a6629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LR/plugins/admin_signed_tombstone.py
Expand Up @@ -23,7 +23,7 @@ def activate(self):
for (dirpath, dirnames, filenames) in walk(public_key_directory):
for f in filenames:
if f[-4:] == '.txt':
with open(os.path.join(dirpath,f), 'r') as key_file:
with open(path.join(dirpath,f), 'r') as key_file:
self.public_key_fingerprints.extend(gpg.import_keys(key_file.read()).fingerprints)
print "Loading key from %s%s" % (dirpath, f)

Expand Down

0 comments on commit 33a6629

Please sign in to comment.