diff --git a/lib/ansible/modules/network/f5/bigip_device_facts.py b/lib/ansible/modules/network/f5/bigip_device_facts.py index 1f0fab5419..3c1b390f8b 100644 --- a/lib/ansible/modules/network/f5/bigip_device_facts.py +++ b/lib/ansible/modules/network/f5/bigip_device_facts.py @@ -11302,7 +11302,15 @@ class SoftwareImagesParameters(BaseParameters): """ if self._values['build_date'] is None: return None - result = datetime.datetime.strptime(self._values['build_date'], '%a %b %d %H %M %S PDT %Y').isoformat() + + d = self._values['build_date'].split(' ') + + # This removes the timezone portion from the string. This is done + # because Python has awfule tz parsing and strptime doesnt work with + # all timezones in %Z; it only uses the timezones found in time.tzname + d.pop(6) + + result = datetime.datetime.strptime(' '.join(d), '%a %b %d %H %M %S %Y').isoformat() return result @property