Skip to content

Commit

Permalink
Bugfix (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Mar 30, 2020
1 parent 4ce4840 commit ff2f3c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cimetrics/github_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def first_self_comment(self):

for comment in rep.json():
login = comment.get("user", {}).get("login")
if login == self.env.pr_user():
if login == self.env.pr_user:
return comment["id"]
return None

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="cimetrics",
version="0.2.10",
version="0.2.11",
description="Lightweight python module to track crucial metrics",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit ff2f3c3

Please sign in to comment.