You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2012/02/22 22:28:34 UTC

svn commit: r1292516 - /subversion/trunk/subversion/tests/cmdline/svntest/verify.py

Author: philip
Date: Wed Feb 22 21:28:34 2012
New Revision: 1292516

URL: http://svn.apache.org/viewvc?rev=1292516&view=rev
Log:
* subversion/tests/cmdline/svntest/verify.py (DumpParser): Update a comment.

Modified:
    subversion/trunk/subversion/tests/cmdline/svntest/verify.py

Modified: subversion/trunk/subversion/tests/cmdline/svntest/verify.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/verify.py?rev=1292516&r1=1292515&r2=1292516&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/verify.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/verify.py Wed Feb 22 21:28:34 2012
@@ -424,7 +424,7 @@ class DumpParser:
     return m.group(1)
 
   def parse_blank(self, required=True):
-    if self.lines[self.current] != '\n':  # Windows?
+    if self.lines[self.current] != '\n':  # Works on Windows
       if required:
         raise SVNDumpParseError("expected blank at line %d\n%s"
                                 % (self.current, self.lines[self.current]))