Skip to content

Commit b8eee2b

Browse files
committed
Fix arg parsing in Coverity script
The Coverity script still used some Python2-isms in argument parsing. These didn't matter for today's Coverity runs, since the package is called as a library from the nightly builder, but is important as part of splitting nightly tarballs and Coverity. Signed-off-by: Brian Barrett <bbarrett@amazon.com>
1 parent 181701a commit b8eee2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nightly-tarball/Coverity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def run_coverity(logger, build_root, source_tarball, config):
169169
help='Coverity submission email address',
170170
type=str)
171171

172-
for key, value in vars(parser.parse_args()).iteritems():
172+
for key, value in vars(parser.parse_args()).items():
173173
if not value == None:
174174
config[key] = value
175175

0 commit comments

Comments
 (0)