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

  • Committer: John Arbash Meinel
  • Date: 2008-10-21 15:36:44 UTC
  • mto: This revision was merged to the branch mainline in revision 3792.
  • Revision ID: john@arbash-meinel.com-20081021153644-0drssjf3k1cx1sgq
Fix a missing import

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
 
321
321
def _ensure_unicode(s):
322
322
    if s and type(s) != unicode:
 
323
        from bzrlib import osutils
323
324
        s = s.decode(osutils.get_user_encoding())
324
325
    return s
325
326