diff options
author | msglm <msglm@techchud.xyz> | 2025-08-17 19:53:50 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-08-17 19:53:50 -0500 |
commit | 616573c54966dd84c28abf09dc92e28bc3b29a95 (patch) | |
tree | ec2494026c0b22b0be3c24c9e9113cb3b6f70e43 | |
parent | 2fdbea5e6eb06c75f6425bc8b1e4300124ff7fd9 (diff) | |
download | comedyGenerator-616573c54966dd84c28abf09dc92e28bc3b29a95.tar.gz comedyGenerator-616573c54966dd84c28abf09dc92e28bc3b29a95.tar.bz2 comedyGenerator-616573c54966dd84c28abf09dc92e28bc3b29a95.zip |
fixing debug info of last commit
-rwxr-xr-x | comedyGenerator | 10 |
1 files 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 <https://www.gnu.org/licenses/>. - |