##// END OF EJS Templates
py3: fix comparison between int and None...
Manuel Jacob -
r45499:9e5f598f stable
parent child Browse files
Show More
@@ -817,7 +817,7 b' class svn_source(converter_source):'
817 817 # We do not know the latest changed revision,
818 818 # keep the first one with changed paths.
819 819 break
820 if revnum <= stop:
820 if stop is not None and revnum <= stop:
821 821 break
822 822
823 823 for p in paths:
General Comments 0
You need to be logged in to leave comments. Login now