##// END OF EJS Templates
dagop: check if stopdepth is greater than or equal to maxlogdepth...
av6 -
r41434:7e55ca65 default
parent child Browse files
Show More
@@ -221,7 +221,7 b' def revdescendants(repo, revs, followfir'
221 Scan ends at the stopdepth (exlusive) if specified. Revisions found
221 Scan ends at the stopdepth (exlusive) if specified. Revisions found
222 earlier than the startdepth are omitted.
222 earlier than the startdepth are omitted.
223 """
223 """
224 if startdepth is None and (stopdepth is None or stopdepth == maxlogdepth):
224 if startdepth is None and (stopdepth is None or stopdepth >= maxlogdepth):
225 gen = _genrevdescendants(repo, revs, followfirst)
225 gen = _genrevdescendants(repo, revs, followfirst)
226 else:
226 else:
227 gen = _genrevdescendantsofdepth(repo, revs, followfirst,
227 gen = _genrevdescendantsofdepth(repo, revs, followfirst,
General Comments 0
You need to be logged in to leave comments. Login now