From 75570ad3f1c61085b0f0ea8df9d1e0637fa7d663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 13 Feb 2023 15:58:34 +0100 Subject: [PATCH] [oauth] remove stray 'exit()' (#3628) - bug from 70ce45d9 - broke oauth:tumblr, oauth:flickr, and oauth:smugmug --- gallery_dl/extractor/oauth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gallery_dl/extractor/oauth.py b/gallery_dl/extractor/oauth.py index 25ac86b4..48cef94d 100644 --- a/gallery_dl/extractor/oauth.py +++ b/gallery_dl/extractor/oauth.py @@ -82,7 +82,6 @@ class OAuthBase(Extractor): self.log.info("Please open this URL in your browser:") stdout_write("\n{}\n\n".format(url)) - exit() return (recv or self.recv)() def error(self, msg):