mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixup #33875
This commit is contained in:
parent
56b1f6c651
commit
f9fd6ddd8a
2 changed files with 2 additions and 2 deletions
|
@ -202,7 +202,7 @@ def diff_mtime_map(map1, map2):
|
|||
|
||||
# map1 and map2 are guaranteed to have same keys,
|
||||
# so compare mtimes
|
||||
for filename, mtime in map1.iteritems():
|
||||
for filename, mtime in six.iteritems(map1):
|
||||
if map2[filename] != mtime:
|
||||
return True
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
:codeauthor: :email:`Joao Mesquita <jmesquita@sangoma.com>`
|
||||
'''
|
||||
|
||||
# Import pytohn libs
|
||||
# Import Python libs
|
||||
from __future__ import absolute_import
|
||||
|
||||
# Import Salt Testing libs
|
||||
|
|
Loading…
Add table
Reference in a new issue