/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Robert Collins
  • Date: 2009-05-23 20:57:12 UTC
  • mfrom: (4371 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4441.
  • Revision ID: robertc@robertcollins.net-20090523205712-lcwbfqk6vwavinuv
MergeĀ .dev.

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, 14, 0)
 
25
_script_version = (1, 16, 0)
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)