We don't need 'leading', so just use os.path.basename()

-- 
Vincent Legoll
Index: dirdiff.py
===================================================================
--- dirdiff.py	(révision 1182)
+++ dirdiff.py	(copie de travail)
@@ -1013,7 +1013,7 @@
             for component in changed:
                 child = model.iter_children( it )
                 while child:
-                    leading, name = os.path.split( model.value_path(child, pane) )
+                    name = os.path.basename(model.value_path(child, pane))
                     if component == name : # found it
                         it = child
                         break
_______________________________________________
meld-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/meld-list

Reply via email to