commit: 2e3323ca17dc71abd93f6db7d388dfe869cedea4
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 9 18:37:28 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Fri Dec 19 21:17:01 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=2e3323ca
seedhandler: fix missed filename rename to filepath
---
gkeys/seedhandler.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gkeys/seedhandler.py b/gkeys/seedhandler.py
index 8e06fab..724af65 100644
--- a/gkeys/seedhandler.py
+++ b/gkeys/seedhandler.py
@@ -64,7 +64,7 @@ class SeedHandler(object):
@param seedfile: string filepath of the file to load
@return Seeds class instance of the file loaded
'''
- if not seedfile and not filename:
+ if not seedfile and not filepath:
self.logger.error("SeedHandler: load_seeds; no filename to load: "
"setting = %s. Please use the -S or -F option to indicate: which
seed "
"file to use." % seedfile)