/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 bzrlib/plugin.py

  • Committer: Martin Pool
  • Date: 2008-10-27 07:29:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3797.
  • Revision ID: mbp@sourcefrog.net-20081027072932-zf46zgx6vfog9ciy
Update osutils imports to fix setup.py on Windows

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005, 2007 Canonical Ltd
 
1
# Copyright (C) 2004, 2005, 2007, 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
33
33
import os
34
34
import sys
35
35
 
 
36
from bzrlib import osutils
 
37
 
36
38
from bzrlib.lazy_import import lazy_import
 
39
 
37
40
lazy_import(globals(), """
38
41
import imp
39
42
import re
44
47
    config,
45
48
    debug,
46
49
    errors,
47
 
    osutils,
48
50
    trace,
49
51
    )
50
52
from bzrlib import plugins as _mod_plugins