Skip to content

Commit e81b362

Browse files
committed
State that we did this, rather than leaving the user hanging
Often there won't be any other output, so this is confusing as it looks like we stalled while creating the milestone.
1 parent 2045333 commit e81b362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/import_backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ def get_or_create_milestone(self, title: str) -> github.Milestone:
202202
try:
203203
return self.milestones[title]
204204
except KeyError:
205-
print(f"Creating Milestone {title}")
206205
milestone = self.repo.create_milestone(title)
206+
print(f"Created Milestone {title}")
207207
self.milestones[title] = milestone
208208
return milestone
209209

0 commit comments

Comments
 (0)