Fix typo causing SyntaxError (missing colon)

This commit is contained in:
Toshio Kuratomi 2015-01-19 09:40:04 -08:00 committed by Matt Clay
parent 465d0483eb
commit bc5d5b1be1

View file

@ -164,7 +164,7 @@ class RabbitMqUser(object):
def add(self):
if self.password is not None:
self._exec(['add_user', self.username, self.password])
else
else:
self._exec(['add_user', self.username, ''])
self._exec(['clear_password', self.username])