diff options
| -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/>. - | 
