Fixing empty tags check

Right now even if you pass in an empty tags list to the module (either with
an empty string or null) it will erroneously think the tags list have changed
and re-apply the tags on every run
pull/18777/head
Luiz Felipe G. Pereira 9 years ago committed by Matt Clay
parent 35087325a8
commit 665745e2bd

@ -108,7 +108,7 @@ class RabbitMqUser(object):
self.username = username
self.password = password
self.node = node
if tags is None:
if not tags:
self.tags = list()
else:
self.tags = tags.split(',')

Loading…
Cancel
Save