~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-07-22 22:37:53 UTC
  • Revision ID: mbp@sourcefrog.net-20050722223753-7dced4e32d3ce21d
- add the start of a test for inventory file-id matching

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
IGNORE_FILENAME = ".bzrignore"
37
37
 
38
38
import locale
39
 
user_encoding = locale.getpreferredencoding()
 
39
user_encoding = locale.getpreferredencoding() or 'ascii'
40
40
del locale
41
41
 
42
42
__copyright__ = "Copyright 2005 Canonical Development Ltd."