summaryrefslogtreecommitdiffstats
path: root/base/common/python/pki/cli
diff options
context:
space:
mode:
authorMatthew Harmsen <mharmsen@redhat.com>2017-06-02 02:10:02 +0200
committerMatthew Harmsen <mharmsen@redhat.com>2017-06-02 02:10:02 +0200
commitf7b6305396581f5916498cc4ea8247596bf39aaf (patch)
treef0d33e714665a2394c693e828cca7dc933b93837 /base/common/python/pki/cli
parent772e05e746570c13afeb60516c07a3fb95ca3e78 (diff)
downloadpki-f7b6305396581f5916498cc4ea8247596bf39aaf.tar.gz
pki-f7b6305396581f5916498cc4ea8247596bf39aaf.tar.xz
pki-f7b6305396581f5916498cc4ea8247596bf39aaf.zip
Fixed pylint issues
- https://pagure.io/dogtagpki/issue/2713 - Build failure due to Pylint issues
Diffstat (limited to 'base/common/python/pki/cli')
-rw-r--r--base/common/python/pki/cli/pkcs12.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/common/python/pki/cli/pkcs12.py b/base/common/python/pki/cli/pkcs12.py
index 8934d33a7..6b99fcfbd 100644
--- a/base/common/python/pki/cli/pkcs12.py
+++ b/base/common/python/pki/cli/pkcs12.py
@@ -62,10 +62,10 @@ class PKCS12ImportCLI(pki.cli.CLI):
print(' --help Show help message.')
print()
- def execute(self, args):
+ def execute(self, argv):
try:
- opts, _ = getopt.gnu_getopt(args, 'v', [
+ opts, _ = getopt.gnu_getopt(argv, 'v', [
'pkcs12-file=', 'pkcs12-password=', 'pkcs12-password-file=',
'no-trust-flags', 'no-user-certs', 'no-ca-certs', 'overwrite',
'verbose', 'debug', 'help'])