Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

fixes bnc871549 uncaught exception config deploy #26

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/tools/rhncfg/config_common/file_utils.py
Expand Up @@ -97,7 +97,7 @@ def process(self, file_struct, directory=None, strict_ownership=1):
modified = xmlrpc_time(file_struct['modified'].value)
epoch_time = time.mktime(modified)
os.utime(fullpath, (epoch_time, epoch_time))
except ValueError:
except (ValueError, AttributeError):
# we can't parse modified time
pass

Expand Down