~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bugtracker.py

  • Committer: Jonathan Lange
  • Date: 2007-04-13 04:58:08 UTC
  • mto: This revision was merged to the branch mainline in revision 2446.
  • Revision ID: jml@canonical.com-20070413045808-fx86n9ctjcbf4hvq
Update NEWS file.
Use non-lazy import
Use run_bzr for running bzr in fixes tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
 
18
from bzrlib import registry
18
19
from bzrlib.lazy_import import lazy_import
19
20
lazy_import(globals(), """
20
 
from bzrlib import errors, registry
 
21
from bzrlib import errors
21
22
""")
22
23
 
23
24