commit: 6d5462528d517f39e3ccadd332a9f45268430b36
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 04:53:41 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 04:53:41 2015 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=6d546252
gkeysgpg/cli: Fix a list copy
gkeys/gkeysgpg/cli.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gkeys/gkeysgpg/cli.py b/gkeys/gkeysgpg/cli.py
index 70a898d..c5d08ec 100644
--- a/gkeys/gkeysgpg/cli.py
+++ b/gkeys/gkeysgpg/cli.py
@@ -40,7 +40,7 @@ class Main(CliBase):
'Actions': Actions,
'Available_Actions': Available_Actions,
'Action_Map': Action_Map,
- 'Base_Options': Available_Actions.copy(),
+ 'Base_Options': Available_Actions[:],
'prog': 'gkeys-gpg',
'description': 'Gentoo-keys gpg command wrapper',
'epilog': '''CAUTION: adding UNTRUSTED keys can be HAZARDOUS to
your system!'''