Skip to content

Commit

Permalink
Remove __main__. We already support this through 'buildbot debugclient'
Browse files Browse the repository at this point in the history
  • Loading branch information
krajaratnam committed Feb 19, 2010
1 parent 461a3f1 commit 828ee71
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions buildbot/clients/debug.py
Expand Up @@ -169,13 +169,3 @@ def err(self, failure):

def run(self):
reactor.run()

if __name__ == '__main__':
master = "localhost:8007"
if len(sys.argv) > 1:
master = sys.argv[1]
passwd = "debugpw"
if len(sys.argv) > 2:
passwd = sys.argv[2]
d = DebugWidget(master, passwd)
d.run()

0 comments on commit 828ee71

Please sign in to comment.