Skip to content

Commit

Permalink
Bug 1570648 - Fixed typo seld->self
Browse files Browse the repository at this point in the history
Reviewers: zalun

Reviewed By: zalun

Subscribers: zalun

Bug #: 1570648

Differential Revision: https://phabricator.services.mozilla.com/D40407
  • Loading branch information
sigiesec authored and zalun committed Aug 7, 2019
1 parent 63dcb6b commit 75461ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moz-phab
Original file line number Diff line number Diff line change
Expand Up @@ -1047,9 +1047,9 @@ class ConduitAPI:
)
self.call("differential.setdiffproperty", api_call_args)

def file_upload(seld, data):
def file_upload(self, data):
data_base64 = base64.standard_b64encode(data)
return conduit.call("file.upload", dict(data_base64=data_base64.decode()))
return self.call("file.upload", dict(data_base64=data_base64.decode()))


conduit = ConduitAPI()
Expand Down

0 comments on commit 75461ab

Please sign in to comment.