From b4ffc1a06be458a03e4a4bab33599f217f7ab6f8 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Mon, 10 Jan 2022 11:42:05 +0300 Subject: [PATCH] [shortener] fix typos Signed-off-by: R4SAS --- pbincli/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pbincli/api.py b/pbincli/api.py index 9a6b62a..8ea32a2 100644 --- a/pbincli/api.py +++ b/pbincli/api.py @@ -96,7 +96,7 @@ class Shortener: elif self.api == 'isgd' or self.api == 'vgd': self._gd_init() elif self.api == 'custom': - self.apiurl == settings['short_url'] + self.apiurl = settings['short_url'] self.session, self.proxy = _config_requests(settings) @@ -143,7 +143,7 @@ class Shortener: 'tinyurl': self._tinyurl, 'isgd': self._gd, 'vgd': self._gd, - 'cuttly': self._cuttly + 'cuttly': self._cuttly, 'custom': self._custom } # run function selected by choosen API