Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
Syntax hiccup
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-better committed Jan 31, 2015
1 parent 05117a6 commit 8122c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pushbullet/pushbullet.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def dismiss_push(self, iden):
data = {"dismissed": True}
r = self._session.post("{}/{}".format(self.PUSH_URL, iden), data=json.dumps(data))

if r.status_code =! requests.codes.ok:
if r.status_code != requests.codes.ok:
raise PushBulletError(r.text)

def delete_push(self, iden):
Expand Down

0 comments on commit 8122c97

Please sign in to comment.