1
0
Fork 0

fix auto revision usage

This commit is contained in:
Mikhail Goncharov 2020-07-24 10:06:04 +02:00
parent 57702114b0
commit 5b07569602

View file

@ -257,7 +257,7 @@ class ApplyPatch:
earliest_commit = None
rev = self.base_revision
age_limit = datetime.datetime.now() - APPLIED_SCAN_LIMIT
if rev is None:
if rev != 'auto':
rev = 'master'
for commit in self.repo.iter_commits(rev):
if datetime.datetime.fromtimestamp(commit.committed_date) < age_limit: