meld r1173 - trunk/vc



Author: vincele
Date: Mon Feb 23 23:21:58 2009
New Revision: 1173
URL: http://svn.gnome.org/viewvc/meld?rev=1173&view=rev

Log:
Remove the 'date' unused variable


Modified:
   trunk/vc/bzr.py
   trunk/vc/mercurial.py
   trunk/vc/monotone.py

Modified: trunk/vc/bzr.py
==============================================================================
--- trunk/vc/bzr.py	(original)
+++ trunk/vc/bzr.py	Mon Feb 23 23:21:58 2009
@@ -111,7 +111,7 @@
                 mydir, name = os.path.split(mydir)
             if mydir != directory:
                 continue
-            rev, date, options, tag = "","","",""
+            rev, options, tag = "","",""
             if path.endswith('/'):
                 retdirs.append( _vc.Dir(path[:-1], name, state))
             else:

Modified: trunk/vc/mercurial.py
==============================================================================
--- trunk/vc/mercurial.py	(original)
+++ trunk/vc/mercurial.py	Mon Feb 23 23:21:58 2009
@@ -78,7 +78,7 @@
         hgfiles = {}
         for statekey, name in [ (entry[0], entry[2:]) for entry in entries if entry.find("/")==-1 ]:
             path = os.path.join(directory, name)
-            rev, date, options, tag = "","","",""
+            rev, options, tag = "","",""
             state = statemap.get(statekey, _vc.STATE_NONE)
             retfiles.append( _vc.File(path, name, state, rev, tag, options) )
             hgfiles[name] = 1

Modified: trunk/vc/monotone.py
==============================================================================
--- trunk/vc/monotone.py	(original)
+++ trunk/vc/monotone.py	Mon Feb 23 23:21:58 2009
@@ -259,7 +259,7 @@
                 mydir, name = os.path.split(mydir)
             if mydir != directory:
                 continue
-            rev, date, options, tag = "","","",""
+            rev, options, tag = "","",""
             if path.endswith('/'):
                 retdirs.append( _vc.Dir(path[:-1], name, state))
             else:



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