diff options
author | msglm <msglm@techchud.xyz> | 2023-01-11 20:51:08 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-11 20:51:08 -0600 |
commit | 126910409154457cbdbab1948bad6153b897a522 (patch) | |
tree | 58d58a406ebd88e2a16e527caf0a55df50e0192d | |
parent | 37501f27c314853a27fd87c3f7c155ea29e68e6a (diff) | |
download | comedyGenerator-126910409154457cbdbab1948bad6153b897a522.tar.gz comedyGenerator-126910409154457cbdbab1948bad6153b897a522.tar.bz2 comedyGenerator-126910409154457cbdbab1948bad6153b897a522.zip |
forgot to make sure that the videos queue is cleared after getting new tags
-rwxr-xr-x | comedyGenerator | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comedyGenerator b/comedyGenerator index dc1a429..58bff1e 100755 --- a/comedyGenerator +++ b/comedyGenerator @@ -59,8 +59,8 @@ headers = { "Cache-Control": "max-age=0" } -videos = [] for tags in args.tags: + videos = [] print("Downloading Tag: " + tags) headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0", |