mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 01:26:57 +03:00
Close existing Django issue if current is equal to it
This commit is contained in:
parent
ef462ba8e0
commit
8076e8cee8
|
@ -182,7 +182,7 @@ class GitHubManager:
|
||||||
if not matches:
|
if not matches:
|
||||||
continue
|
continue
|
||||||
issue_version = DjVersion.parse(matches.group(1))
|
issue_version = DjVersion.parse(matches.group(1))
|
||||||
if self.base_dj_version > issue_version:
|
if self.base_dj_version >= issue_version:
|
||||||
self.close_issue(issue)
|
self.close_issue(issue)
|
||||||
else:
|
else:
|
||||||
self.existing_issues[issue_version] = issue
|
self.existing_issues[issue_version] = issue
|
||||||
|
|
Loading…
Reference in New Issue
Block a user