Merge pull request #497 from sino1641/patch-2

Ignore http proxy warning
This commit is contained in:
Yoshiko2
2021-05-27 20:38:18 +08:00
committed by GitHub

View File

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