print(
             "When using the --images option, a valid username must be provided!"
         )
         parser.print_help()
         quit()
     get_user_content_by_images(args.username)
     quit()
 if not args.album:
     if args.username == "Unknown_User":
         print(
             "If not specifying an album, a valid username must be provided!"
         )
         parser.print_help()
         quit()
     # Try to get a user's content from their albums
     album_count = client.get_account_album_count(args.username)
     # If no albums, try to download they images associated with their account
     if album_count == 0:
         get_by_images = input("This user has no albums. "\
                               "Would you like to try to get their content by their images? \n"\
                               "Type 'Y' for yes or anything else to quit:\n")
         if get_by_images == 'Y':
             get_user_content_by_images(args.username)
         quit()
     else:
         albums = client.get_account_album_ids(args.username)
         if len(albums) != album_count:
             print(
                 "Album count does not equal number of albums retrieved! Must implement paging!"
             )
         for album in albums: