Selaa lähdekoodia

more tweaks

tags/v0.1
Ben Kurtovic 13 vuotta sitten
vanhempi
commit
0d0709624a
1 muutettua tiedostoa jossa 5 lisäystä ja 5 poistoa
  1. +5
    -5
      irc/commands/tasks.py

+ 5
- 5
irc/commands/tasks.py Näytä tiedosto

@@ -57,17 +57,17 @@ class Tasks(BaseCommand):
tname = thread.name
if tname == "MainThread":
tname = self.get_main_thread_name()
normal_threads.append("\x0302{}\x0301 (running as main thread)".format(tname))
normal_threads.append("\x0302{}\x0301 (as main thread, {})".format(tname, thread.ident))
elif tname in ["irc-frontend", "irc-watcher", "wiki-scheduler"]:
normal_threads.append("\x0302{}\x0301".format(tname))
normal_threads.append("\x0302{}\x0301 ({})".format(tname, thread.ident))
else:
task_thread_num += 1
task_threads.append("\x0302{}\x0301".format(tname))
task_threads.append("\x0302{}\x0301 ({})".format(tname, thread.ident))
if task_threads:
msg = "\x0303{}\x0301 threads active: {}, and \x0303{}\x0301 tasks: {}.".format(len(threads), ', '.join(normal_threads), task_thread_num, ', '.join(task_threads))
msg = "\x02{}\x0F threads active: {}, and \x02{}\x0F task threads: {}.".format(len(threads), ', '.join(normal_threads), task_thread_num, ', '.join(task_threads))
else:
msg = "\x0303{}\x0301 threads active: {}, and \x03030\x0301 tasks.".format(len(threads), ', '.join(normal_threads))
msg = "\x02{}\x0F threads active: {}, and \x020\x0F task threads.".format(len(threads), ', '.join(normal_threads))
self.connection.reply(self.data, msg)
def do_listall(self):


Ladataan…
Peruuta
Tallenna