diff --git a/beetsplug/bpd/bluelet.py b/beetsplug/bpd/bluelet.py index b6f9e7277..626587813 100644 --- a/beetsplug/bpd/bluelet.py +++ b/beetsplug/bpd/bluelet.py @@ -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)} diff --git a/test/testall.py b/test/testall.py index 136c510fe..88333121e 100755 --- a/test/testall.py +++ b/test/testall.py @@ -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: