소스 검색

查询数据库 增加空校验

zhangyong 1 년 전
부모
커밋
34dfd55d11
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main.py

+ 1 - 1
main.py

@@ -27,9 +27,9 @@ def get_account_id():
 def job_video_stitching():
     # 在这里编写需要执行的任务代码
     count = get_account_id()
-    count = str(count).replace('(', '').replace(')', '').replace(',', '')
     if count == None:
         count = 0
+    count = str(count).replace('(', '').replace(')', '').replace(',', '')
     if int(count) < 20:
         Common.logger().info("开始执行")
         VideoStitching.video_stitching()