瀏覽代碼

convert ident to str

tags/v0.1
Ben Kurtovic 13 年之前
父節點
當前提交
11fb9df87e
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      irc/commands/tasks.py

+ 1
- 1
irc/commands/tasks.py 查看文件

@@ -79,7 +79,7 @@ class Tasks(BaseCommand):

for task in tasks:
threads_running_task = [t for t in threads if t.name.startswith(task)]
ids = map(lambda t: t.ident, threads_running_task)
ids = map(lambda t: str(t.ident), threads_running_task)
if not ids:
tasklist.append("\x0302{}\x0301 (idle)".format(task))
elif len(ids) == 1:


Loading…
取消
儲存