Browse Source

Mod thread.ident by 10,000 for when they're absurdly large.

tags/v0.2
Ben Kurtovic 11 years ago
parent
commit
e67833a39f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      earwigbot/commands/threads.py

+ 3
- 3
earwigbot/commands/threads.py View File

@@ -71,10 +71,10 @@ class Threads(Command):
tname = thread.name tname = thread.name
if tname == "MainThread": if tname == "MainThread":
t = "\x0302MainThread\x0F (id {0})" t = "\x0302MainThread\x0F (id {0})"
normal_threads.append(t.format(thread.ident))
normal_threads.append(t.format(thread.ident % 10000))
elif tname in self.config.components: elif tname in self.config.components:
t = "\x0302{0}\x0F (id {1})" t = "\x0302{0}\x0F (id {1})"
normal_threads.append(t.format(tname, thread.ident))
normal_threads.append(t.format(tname, thread.ident % 10000))
elif tname.startswith("reminder"): elif tname.startswith("reminder"):
tname = tname.replace("reminder ", "") tname = tname.replace("reminder ", "")
t = "\x0302reminder\x0F (until {0})" t = "\x0302reminder\x0F (until {0})"
@@ -82,7 +82,7 @@ class Threads(Command):
else: else:
tname, start_time = re.findall("^(.*?) \((.*?)\)$", tname)[0] tname, start_time = re.findall("^(.*?) \((.*?)\)$", tname)[0]
t = "\x0302{0}\x0F (id {1}, since {2})" t = "\x0302{0}\x0F (id {1}, since {2})"
daemon_threads.append(t.format(tname, thread.ident,
daemon_threads.append(t.format(tname, thread.ident % 10000,
start_time)) start_time))


if daemon_threads: if daemon_threads:


Loading…
Cancel
Save