mirror of
https://github.com/beetbox/beets.git
synced 2026-02-24 16:23:04 +01:00
spelling errors in comments
This commit is contained in:
parent
748457193b
commit
6fbe69d454
2 changed files with 3 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ class ThreadException(Exception):
|
|||
|
||||
def run(root_coro):
|
||||
# The "threads" dictionary keeps track of all the currently-
|
||||
# executing coroutines. It maps coroutines to their currenly
|
||||
# executing coroutines. It maps coroutines to their currently
|
||||
# "blocking" event.
|
||||
threads = {root_coro: ValueEvent(None)}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@ os.chdir(pkgpath)
|
|||
|
||||
def suite():
|
||||
s = unittest.TestSuite()
|
||||
# get the suite() of every module in this directory begining with test_
|
||||
# Get the suite() of every module in this directory beginning with
|
||||
# "test_".
|
||||
for fname in os.listdir(pkgpath):
|
||||
match = re.match(r'(test_\S+)\.py$', fname)
|
||||
if match:
|
||||
|
|
|
|||
Loading…
Reference in a new issue