Do not use shortcut conditional operator which is not supported in Python 2.4.

pull/3940/head
Hiroaki Nakamura 11 years ago
parent a0da0afe00
commit 8c5eb96de4

@ -58,8 +58,10 @@ class UnimplementedStrategy(object):
def unimplemented_error(self):
platform = get_platform()
distribution = get_distribution()
msg_platform = '%s (%s)' % (platform, distribution) \
if distribution is not None else platform
if distribution is not None:
msg_platform = '%s (%s)' % (platform, distribution)
else:
msg_platform = platform
self.module.fail_json(
msg='hostname module cannot be used on platform %s' % msg_platform)

Loading…
Cancel
Save