Fix issue #48367 using the same approach as PR #46776

This commit is contained in:
Andre Sencioles 2018-06-29 15:24:47 +12:00
parent 1bccb7a316
commit c0a10ec63b
No known key found for this signature in database
GPG Key ID: E5752425A77C0C23

View File

@ -327,7 +327,7 @@ def chconfig(cmd, *args, **kwargs):
'''
# Strip the __pub_ keys...is there a better way to do this?
for k in kwargs:
for k in list(kwargs):
if k.startswith('__pub_'):
kwargs.pop(k)