~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-09-14 03:01:25 UTC
  • mfrom: (4574.3.12 406113-extension-warnings)
  • Revision ID: pqm@pqm.ubuntu.com-20090914030125-wichbbiuuk4260y4
(mbp) warnings if extensions can't be loaded

Show diffs side-by-side

added added

removed removed

Lines of Context:
3700
3700
 
3701
3701
try:
3702
3702
    from bzrlib._knit_load_data_pyx import _load_data_c as _load_data
3703
 
except ImportError:
 
3703
except ImportError, e:
 
3704
    osutils.failed_to_load_extension(e)
3704
3705
    from bzrlib._knit_load_data_py import _load_data_py as _load_data