diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2018-07-05 10:49:59 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2018-07-06 22:22:13 -0700 |
commit | d2b30942d665fd5a79cef5a933904824273928e7 (patch) | |
tree | 0fcc16ecdc913b05ae9979232d7dff255638c7ec | |
parent | gkeys base.py: Fix fetchonly typo and add to Args class (diff) | |
download | gentoo-keys-d2b30942d665fd5a79cef5a933904824273928e7.tar.gz gentoo-keys-d2b30942d665fd5a79cef5a933904824273928e7.tar.bz2 gentoo-keys-d2b30942d665fd5a79cef5a933904824273928e7.zip |
gkeys actions.py: Assign sig_path from fetcher
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
-rw-r--r-- | gkeys/gkeys/actions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py index 2fe29fb..fd92a77 100644 --- a/gkeys/gkeys/actions.py +++ b/gkeys/gkeys/actions.py @@ -832,6 +832,7 @@ class Actions(ActionBase): fetcher = Fetch(self.logger) success, msgs = fetcher.fetch_url(url, filepath, signature, timestamp_path=timestamp_path, climit=climit) + sig_path = fetcher.sig_path messages.extend(msgs) elif signature is not None and os.path.exists(signature): sig_path = signature |