Browse Source

Bugfix.

tags/v0.2
Ben Kurtovic 10 years ago
parent
commit
b939262b11
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/wiki/copyvios/workers.py

+ 1
- 1
earwigbot/wiki/copyvios/workers.py View File

@@ -254,11 +254,11 @@ class _CopyvioWorker(object):


def start(self, name): def start(self, name):
"""Start the worker in a new thread, with a given name.""" """Start the worker in a new thread, with a given name."""
self._logger = getLogger("earwigbot.wiki.cvworker." + name)
self._thread = thread = Thread(target=self._run) self._thread = thread = Thread(target=self._run)
thread.name = "cvworker-" + name thread.name = "cvworker-" + name
thread.daemon = True thread.daemon = True
thread.start() thread.start()
self._logger = getLogger("earwigbot.wiki.cvworker." + name)




class CopyvioWorkspace(object): class CopyvioWorkspace(object):


Loading…
Cancel
Save