From 75461abc3a0488928eb74741e0b53e23e4857b60 Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Mon, 5 Aug 2019 14:12:31 +0200 Subject: [PATCH] Bug 1570648 - Fixed typo seld->self Reviewers: zalun Reviewed By: zalun Subscribers: zalun Bug #: 1570648 Differential Revision: https://phabricator.services.mozilla.com/D40407 --- moz-phab | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/moz-phab b/moz-phab index 99fc220..bdd5c75 100755 --- a/moz-phab +++ b/moz-phab @@ -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()