~lifeless/ubuntu/lucid/bzr/2.1.2-sru

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-06-27 15:23:34 UTC
  • mfrom: (1.3.1 upstream) (3.1.78 karmic)
  • Revision ID: james.westby@ubuntu.com-20090627152334-u3smexjpaolh96qd
* New upstream release.
* Bump standards version to 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
2
 
3
 
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
 
3
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
4
4
#
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 
19
19
"""Bazaar -- a free distributed version-control tool"""
20
20
 
22
22
import sys
23
23
 
24
24
# update this on each release
25
 
_script_version = (1, 13, 1)
 
25
_script_version = (1, 16, 1)
26
26
 
27
27
if __doc__ is None:
28
28
    print "bzr does not support python -OO."
127
127
 
128
128
if __name__ == '__main__':
129
129
    bzrlib.trace.enable_default_logging()
130
 
    exit_val = bzrlib.commands.main(sys.argv)
 
130
    exit_val = bzrlib.commands.main()
131
131
 
132
132
    if profiling:
133
133
        profile_imports.log_stack_info(sys.stderr)