Correct syntax error in previous change

I would have sworn that I had tested that.
This commit is contained in:
Drew DeVault 2021-10-06 10:06:51 +02:00
parent af1c1b3797
commit 48aadb5b1c
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ def new_POST(owner, project_name):
tracker.owner_id = owner.id
tracker.name = remote_tracker["name"]
tracker.description = remote_tracker["description"]
if any(remote_tracker["default_access"]:
if any(remote_tracker["default_access"]):
tracker.visibility = Visibility.public
else:
tracker.visibility = Visibility.unlisted