Skip to content

Commit

Permalink
Output for user Command-line Tool was fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratio2 committed Mar 12, 2013
1 parent ede1de8 commit e247c2b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion master/buildbot/scripts/user.py
Expand Up @@ -41,6 +41,10 @@ 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)
d = uc.send(op, bb_username, bb_password, ids, info)
def callback(text):
print text
d.addCallback(callback)
yield d

defer.returnValue(0)

0 comments on commit e247c2b

Please sign in to comment.