Skip to content

Commit

Permalink
Update 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdctop authored Mar 27, 2020
1 parent 1f57bd2 commit ccee4eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions AV_Data_Capture.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,9 @@ def getNumber(filepath,absolute_path = False):
print("[!]Making Data for [" + i + "], the number is [" + getNumber(i) + "]")
core_main(i, getNumber(i))
print("[*]======================================================")
except: # 番号提取异常
print('[-]' + i + ' Cannot catch the number :')
except Exception as e: # 番号提取异常
print('[-]' + i + ' ERRPR :')
print('[-]',e)
if config['common']['soft_link'] == '1':
print('[-]Link', i, 'to failed folder')
os.symlink(i, str(os.getcwd()) + '/' + failed_folder + '/')
Expand Down

0 comments on commit ccee4eb

Please sign in to comment.