/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/knit.py

  • Committer: Martin Pool
  • Date: 2009-07-29 04:33:44 UTC
  • mto: This revision was merged to the branch mainline in revision 4688.
  • Revision ID: mbp@sourcefrog.net-20090729043344-oktumz4b3lcdow2k
More warnings when failing to load extensions

Show diffs side-by-side

added added

removed removed

Lines of Context:
3622
3622
 
3623
3623
try:
3624
3624
    from bzrlib._knit_load_data_pyx import _load_data_c as _load_data
3625
 
except ImportError:
 
3625
except ImportError, e:
 
3626
    osutils._failed_to_load_extension(e)
3626
3627
    from bzrlib._knit_load_data_py import _load_data_py as _load_data