From 46494784e47bfd7562aefc33e059deee4641546d Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Tue, 17 Sep 2019 08:48:39 -0700 Subject: [PATCH] [Retrosign] http -> https Thanks @ComradeCactus for the tip. Resolves #57 --- retrosign/retrosign.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retrosign/retrosign.py b/retrosign/retrosign.py index 8f48515..9dc7778 100644 --- a/retrosign/retrosign.py +++ b/retrosign/retrosign.py @@ -65,7 +65,7 @@ class Retrosign(commands.Cog): async with ctx.channel.typing(): async with self.session.post( - "http://photofunia.com/effects/retro-wave", data=data + "https://photofunia.com/effects/retro-wave", data=data ) as response: if response.status == 200: soup = bs(await response.text(), "html.parser")