Rev 3789: Fix a missing import in http://bzr.arbash-meinel.com/branches/bzr/1.9-dev/msvc_python24

John Arbash Meinel john at arbash-meinel.com
Tue Oct 21 16:36:57 BST 2008


At http://bzr.arbash-meinel.com/branches/bzr/1.9-dev/msvc_python24

------------------------------------------------------------
revno: 3789
revision-id: john at arbash-meinel.com-20081021153644-0drssjf3k1cx1sgq
parent: pqm at pqm.ubuntu.com-20081021060139-fpwr4fxr2oww2x5o
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: msvc_python24
timestamp: Tue 2008-10-21 10:36:44 -0500
message:
  Fix a missing import
-------------- next part --------------
=== modified file 'bzrlib/win32utils.py'
--- a/bzrlib/win32utils.py	2008-10-01 05:40:45 +0000
+++ b/bzrlib/win32utils.py	2008-10-21 15:36:44 +0000
@@ -320,6 +320,7 @@
 
 def _ensure_unicode(s):
     if s and type(s) != unicode:
+        from bzrlib import osutils
         s = s.decode(osutils.get_user_encoding())
     return s
 



More information about the bazaar-commits mailing list