Rev 4794: Remove a pdb.set_trace() call. in http://bazaar.launchpad.net/~jameinel/bzr/2.1.0b4-win32-minor
John Arbash Meinel
john at arbash-meinel.com
Wed Nov 18 15:56:55 GMT 2009
At http://bazaar.launchpad.net/~jameinel/bzr/2.1.0b4-win32-minor
------------------------------------------------------------
revno: 4794
revision-id: john at arbash-meinel.com-20091118155648-wqmyc0wf3ksxu96h
parent: john at arbash-meinel.com-20091108235907-6qska1oww5sdgv9r
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: 2.1.0b4-win32-minor
timestamp: Wed 2009-11-18 09:56:48 -0600
message:
Remove a pdb.set_trace() call.
-------------- next part --------------
=== modified file 'bzrlib/tests/test_osutils.py'
--- a/bzrlib/tests/test_osutils.py 2009-11-08 23:52:15 +0000
+++ b/bzrlib/tests/test_osutils.py 2009-11-18 15:56:48 +0000
@@ -1771,10 +1771,7 @@
dirinfo = (dirinfo[0], self._native_to_unicode(dirinfo[1]))
details = []
for line in block:
- try:
- details.append(line[0:3] + (self._native_to_unicode(line[4]), ))
- except UnicodeError:
- import pdb; pdb.set_trace()
+ details.append(line[0:3] + (self._native_to_unicode(line[4]), ))
filtered_dirblocks.append((dirinfo, details))
return filtered_dirblocks
More information about the bazaar-commits
mailing list