fix: while set not upload ,it will not move any file to free disk space
This commit is contained in:
parent
99926827f1
commit
c4c6b1a752
@ -77,6 +77,7 @@ def upload(date=datetime.strftime(datetime.now(), "%Y_%m_%d")):
|
|||||||
Common.appendUploadStatus("Upload Daemon Starting")
|
Common.appendUploadStatus("Upload Daemon Starting")
|
||||||
i = Common.uploadQueue.get()
|
i = Common.uploadQueue.get()
|
||||||
while True:
|
while True:
|
||||||
|
Common.doClean()
|
||||||
if Common.forceNotUpload:
|
if Common.forceNotUpload:
|
||||||
Common.appendUploadStatus("设置了不上传,所以[{}]不会上传了".format(i))
|
Common.appendUploadStatus("设置了不上传,所以[{}]不会上传了".format(i))
|
||||||
i = Common.uploadQueue.get()
|
i = Common.uploadQueue.get()
|
||||||
@ -98,7 +99,6 @@ def upload(date=datetime.strftime(datetime.now(), "%Y_%m_%d")):
|
|||||||
continue
|
continue
|
||||||
if not Common.forceNotEncode:
|
if not Common.forceNotEncode:
|
||||||
os.remove(i)
|
os.remove(i)
|
||||||
Common.doClean()
|
|
||||||
i = Common.uploadQueue.get()
|
i = Common.uploadQueue.get()
|
||||||
Common.appendUploadStatus("Upload Daemon Quiting")
|
Common.appendUploadStatus("Upload Daemon Quiting")
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user