~yasumoto7/five-a-day/icon_countdown

« back to all changes in this revision

Viewing changes to 5-a-day

  • Committer: Daniel Hahler
  • Date: 2008-04-07 17:42:41 UTC
  • mfrom: (44.1.14 5-a-day)
  • Revision ID: ubuntu-launchpad@thequod.de-20080407174241-1zdib4sjwnn0arwb
Merged trunk. Make sure last commit in branch was done by the user, when checking for lazy-commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
# Copyright 2008 (C) Canonical Ltd.
 
4
 
 
5
import sys
 
6
 
 
7
from fiveaday import bzr, files, parser, signature
 
8
 
 
9
def main():
 
10
    args = parser.parse_args()
 
11
 
 
12
    username = files.get_lpid()
 
13
    if not username: 
 
14
        return 102 #102: username not defined
 
15
 
 
16
    if args[0] == "--update":
 
17
        err = bzr.update_branch()
 
18
        if err:
 
19
            # stop if creating/updating branch was not successful
 
20
            print >> sys.stderr, "bzr failed with error code", err
 
21
            return 103 #103: error while updating bzr branch
 
22
        return signature.update(args[1:])
 
23
    if args[0] == "--add":
 
24
        return bzr.add(args[1:])
 
25
 
 
26
 
 
27
if __name__ == "__main__":
 
28
    sys.exit(main())