Merge lp:~eday/burrow/788967 into lp:burrow

Proposed by Eric Day
Status: Merged
Approved by: Eric Day
Approved revision: 17
Merged at revision: 18
Proposed branch: lp:~eday/burrow/788967
Merge into: lp:burrow
Diff against target: 11 lines (+3/-0)
1 file modified
burrow/server.py (+3/-0)
To merge this branch: bzr merge lp:~eday/burrow/788967
Reviewer Review Type Date Requested Status
Burrow Core Team Pending
Review via email: mp+62777@code.launchpad.net

Description of the change

Support -h and --help for burrowd command.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'burrow/server.py'
2--- burrow/server.py 2011-04-20 05:14:30 +0000
3+++ burrow/server.py 2011-05-28 20:11:18 +0000
4@@ -81,4 +81,7 @@
5
6
7 if __name__ == '__main__':
8+ if '-h' in sys.argv[1:] or '--help' in sys.argv[1:]:
9+ print 'Usage: burrowd [config files]'
10+ sys.exit(1)
11 Server(sys.argv[1:]).run()

Subscribers

People subscribed via source and target branches