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 committed by rallytime
parent c5746deb5f
commit 430c462f34
No known key found for this signature in database
GPG Key ID: E8F1A4B90D0DEA19

View File

@ -328,7 +328,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)