diff --git a/plugins/Services/test.py b/plugins/Services/test.py index a412f7516..5a7a7baf0 100644 --- a/plugins/Services/test.py +++ b/plugins/Services/test.py @@ -36,7 +36,7 @@ class ServicesTestCase(PluginTestCase): config = { 'plugins.Services.NickServ': 'NickServ', 'plugins.Services.ChanServ': 'ChanServ', - } + } def testPasswordAndIdentify(self): self.assertNotError('services password foo bar') @@ -50,7 +50,7 @@ class ServicesTestCase(PluginTestCase): self.assertTrue(m.args[0] == 'NickServ') self.assertTrue(m.args[1].lower() == 'identify biff') - def testPasswordConfg(self): + def testPasswordConfig(self): self.assertNotError('config plugins.Services.nicks ""') self.assertNotError('config network plugins.Services.nicks ""') diff --git a/src/registry.py b/src/registry.py index 03acf88e3..e6240788b 100644 --- a/src/registry.py +++ b/src/registry.py @@ -95,7 +95,7 @@ def open_registry(filename, clear=False): # worse, the error will pass silently. # # If the line ends in an odd number of backslashes, then there is a - # line-continutation. + # line-continuation. m = slashEnd.search(line) if m and len(m.group(0)) % 2: acc += line[:-1] diff --git a/src/test.py b/src/test.py index 011fa668c..c9d9e93d1 100644 --- a/src/test.py +++ b/src/test.py @@ -280,7 +280,7 @@ class PluginTestCase(SupyTestCase): def tearDown(self): if self.__class__ in (PluginTestCase, ChannelPluginTestCase): - # Necessary because there's a test in here that shouldn\'t run. + # Necessary because there's a test in here that shouldn't run. return for (group, original) in self.originals.items(): group.setValue(original)