ソースを参照

Bug fix

tracker
tech234a 3年前
コミット
5090908f79
1個のファイルの変更5行の追加2行の削除
  1. +5
    -2
      worker.py

+ 5
- 2
worker.py ファイルの表示

@@ -140,8 +140,11 @@ while not gkiller.kill_now:
batchcontent.append(tracker.request_item_from_tracker())

for desit in batchcontent:
if desit.split(":", 1)[0] == "video":
jobs.put(desit)
if desit:
if desit.split(":", 1)[0] == "video":
jobs.put(desit)
else:
print("Ignoring item for now", desit)
else:
print("Ignoring item for now", desit)



読み込み中…
キャンセル
保存