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
This commit is contained in:
Luiz Felipe G. Pereira 2015-08-24 13:54:44 -03:00 committed by Matt Clay
parent 35087325a8
commit 665745e2bd

View file

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