From 616573c54966dd84c28abf09dc92e28bc3b29a95 Mon Sep 17 00:00:00 2001 From: msglm Date: Sun, 17 Aug 2025 19:53:50 -0500 Subject: fixing debug info of last commit --- comedyGenerator | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/comedyGenerator b/comedyGenerator index 894acc4..bd015b7 100755 --- a/comedyGenerator +++ b/comedyGenerator @@ -149,10 +149,6 @@ elif args.usingJavascript: print("Videos list truncated! Its now: " + str(len(videos)) + " units long") for video in videos: URL = video.get_attribute("data-src") - if isinstance(URL, str) and args.debug == True: - print("URL is a string!") - else: - print("URL is NOT a string, it is a " + str(type(URL))) if isinstance(URL, str): if args.debug: @@ -170,6 +166,11 @@ elif args.usingJavascript: time.sleep(tries*1.5) continue break + elif args.debug: + print("URL is NOT a string, it is a " + str(type(URL))) + print("URL was " + URL) + + driver.quit() else: @@ -187,4 +188,3 @@ else: # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . - -- cgit v1.2.3