Ignore http proxy warning

#425 #453
This commit is contained in:
Sin
2021-05-26 02:33:04 +08:00
committed by GitHub
parent 7ef59cfcf0
commit 815a6a73a8

View File

@@ -4,6 +4,7 @@ import os
import re
import sys
import shutil
import urllib3
import config
import time
@@ -145,7 +146,7 @@ def create_data_and_move_with_custom_number(file_path: str, c: config.Config, cu
if __name__ == '__main__':
version = '4.6.4'
urllib3.disable_warnings() #Ignore http proxy warning
# Parse command line args
single_file_path, folder_path, custom_number, auto_exit = argparse_function(version)