Skip to content

Commit

Permalink
fix python syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
HayWo committed May 25, 2020
1 parent 4209fac commit 679d1f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildbot_matrix/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def send(self, build):

try:
target_url = build['url']
if (state == 'pending') && (self.onlyEndState):
if (state == 'pending') and (self.onlyEndState):
log.msg('Pending message not set to matrix, as configured')
return
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open("README.md", "r") as rm:
long_description = rm.read()

VERSION = "0.0.3"
VERSION = "0.0.4"

setup(name='buildbot-matrix',
version=VERSION,
Expand Down

0 comments on commit 679d1f0

Please sign in to comment.