diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2015-08-08 21:53:41 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2015-08-08 21:53:41 -0700 |
commit | 6d5462528d517f39e3ccadd332a9f45268430b36 (patch) | |
tree | 06cc7b30b146c60a79002be7839e3d2997599630 /gkeys | |
parent | Fix setup.py for gkeys-gpg tool. (diff) | |
download | gentoo-keys-6d5462528d517f39e3ccadd332a9f45268430b36.tar.gz gentoo-keys-6d5462528d517f39e3ccadd332a9f45268430b36.tar.bz2 gentoo-keys-6d5462528d517f39e3ccadd332a9f45268430b36.zip |
gkeysgpg/cli: Fix a list copy
Diffstat (limited to 'gkeys')
-rw-r--r-- | gkeys/gkeysgpg/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
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!''' |