~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/groupcompress.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:
1828
1828
        decode_base128_int,
1829
1829
        )
1830
1830
    GroupCompressor = PyrexGroupCompressor
1831
 
except ImportError:
 
1831
except ImportError, e:
 
1832
    osutils._failed_to_load_extension(e)
1832
1833
    GroupCompressor = PythonGroupCompressor
1833
1834