~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Alexander Belchenko
  • Date: 2008-02-16 10:03:17 UTC
  • mfrom: (3224 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3230.
  • Revision ID: bialix@ukr.net-20080216100317-xg1hdw306evlgt94
merge bzr.dev; update for 1.3; $BZR_LOG used in trace.py module (again), not in the main bzr script (req. by Robert Collins)

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 Canonical Ltd
 
3
# Copyright (C) 2005, 2006, 2007, 2008 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
22
22
import sys
23
23
 
24
24
# update this on each release
25
 
_script_version = (1, 2, 0)
 
25
_script_version = (1, 3, 0)
26
26
 
27
27
if __doc__ is None:
28
28
    print "bzr does not support python -OO."
98
98
 
99
99
 
100
100
if __name__ == '__main__':
101
 
    bzrlib.trace.enable_default_logging(os.environ.get('BZR_LOG'))
 
101
    bzrlib.trace.enable_default_logging()
102
102
    exit_val = bzrlib.commands.main(sys.argv)
103
103
 
104
104
    if profiling: