You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by js...@apache.org on 2010/11/30 23:19:18 UTC

svn commit: r1040811 - /subversion/trunk/contrib/server-side/fsfsverify.py

Author: jszakmeister
Date: Tue Nov 30 22:19:18 2010
New Revision: 1040811

URL: http://svn.apache.org/viewvc?rev=1040811&view=rev
Log:
Allow dashes in the RegexpStrategy for fsfsverify.

Modified:
    subversion/trunk/contrib/server-side/fsfsverify.py

Modified: subversion/trunk/contrib/server-side/fsfsverify.py
URL: http://svn.apache.org/viewvc/subversion/trunk/contrib/server-side/fsfsverify.py?rev=1040811&r1=1040810&r2=1040811&view=diff
==============================================================================
--- subversion/trunk/contrib/server-side/fsfsverify.py (original)
+++ subversion/trunk/contrib/server-side/fsfsverify.py Tue Nov 30 22:19:18 2010
@@ -851,7 +851,7 @@ class RegexpStrategy(WalkStrategy):
     self.nodeFile = open(filename, 'rb')
 
   def _nodeWalker(self):
-    nodeId_re = re.compile(r'^id: [a-z0-9\./]+$')
+    nodeId_re = re.compile(r'^id: [a-z0-9\./\-]+$')
 
     self.f.seek(0)
     offset = 0