Skip to content

Commit

Permalink
Merge branch 'user_command_fix' of git://github.com/Ratio2/buildbot
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Mar 16, 2013
2 parents 525f82a + 50e5f62 commit 2bb5705
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion master/buildbot/scripts/user.py
Expand Up @@ -41,6 +41,8 @@ def user(config):
user['identifier'] = sorted(user.values())[0]

uc = usersclient.UsersClient(master, username, passwd, port)
yield uc.send(op, bb_username, bb_password, ids, info)
output = yield uc.send(op, bb_username, bb_password, ids, info)
if output:
print output

defer.returnValue(0)

0 comments on commit 2bb5705

Please sign in to comment.