Fit inadvertent conversion of ordered dict to dict.
This commit is contained in:
parent
7c890be76d
commit
9ec75ccf3f
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ def _make_prune_flags(retention_config):
|
|||
('--keep-monthly', '6'),
|
||||
)
|
||||
'''
|
||||
config = dict(retention_config)
|
||||
config = retention_config.copy()
|
||||
|
||||
if 'prefix' not in config:
|
||||
config['prefix'] = '{hostname}-'
|
||||
|
|
Loading…
Reference in a new issue