/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/tests/test_plugins.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-17 19:10:35 UTC
  • mfrom: (4454 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4461.
  • Revision ID: john@arbash-meinel.com-20090617191035-0vztgazsdwa3mwg4
Merge bzr.dev 4454 in prep for NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
633
633
        path = plugin.get_standard_plugins_path()
634
634
        self.assertEqual(plugin.get_default_plugin_path(), path[0])
635
635
        for directory in path:
636
 
            self.assertNotContainsRe(r'\\/$', directory)
 
636
            self.assertNotContainsRe(directory, r'\\/$')
637
637
        try:
638
638
            from distutils.sysconfig import get_python_lib
639
639
        except ImportError: