meld r1226 - trunk/vc



Author: vincele
Date: Sat Mar  7 22:20:37 2009
New Revision: 1226
URL: http://svn.gnome.org/viewvc/meld?rev=1226&view=rev

Log:
Remove "." subdirectory prefix handling special-case
	
Some VC I tested are capable of handling directories which
names start with a dot, so remove the special case.


Modified:
   trunk/vc/_vc.py

Modified: trunk/vc/_vc.py
==============================================================================
--- trunk/vc/_vc.py	(original)
+++ trunk/vc/_vc.py	Sat Mar  7 22:20:37 2009
@@ -109,7 +109,7 @@
         pass
 
     def listdir_filter(self, entries):
-        return [f for f in entries if f[0] != "." and f != self.VC_DIR]
+        return [f for f in entries if f != self.VC_DIR]
 
     def listdir(self, start):
         if start=="": start="."



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]