[[[ Fixed problem in svnlook.py where when removing a file, the value being used for the deletion path referenced 'None' resulting in an error. * tools/examples/svnlook.py (DiffEditor._do_diff): Updated to use the proper value when a path, which points to a file, is deleted. ]]] Index: tools/examples/svnlook.py =================================================================== --- tools/examples/svnlook.py (revision 32366) +++ tools/examples/svnlook.py (working copy) @@ -265,7 +265,7 @@ print "Added: " + path label = path elif path is None: - print "Removed: " + path + print "Removed: " + base_path label = base_path else: print "Modified: " + path