minor PEP8 cleanup (" -> ')

This commit is contained in:
Overwatch 2014-08-19 16:29:56 +02:00
parent 6416b66f6e
commit 61fb3b1044
18 changed files with 456 additions and 456 deletions

View file

@ -1,8 +1,8 @@
"""
'''
Overwatch Aggregate Object type
TODO Method overrides: _common gets renamed to _call_all and we add _call_last.
"""
'''
class ModuleCollision(Exception):
def __init__(self, colliding_module_name, resident_module_names, item_type, items):
@ -12,7 +12,7 @@ class ModuleCollision(Exception):
self.items = items
def __str__(self):
if self.item_type == "name":
if self.item_type == 'name':
return "Unable to link module '%s': name already present in Aggregate." %(self.colliding_module_name)
else:
return "Unable to link module '%s': %s(s) '%s' already provided by module(s) '%s'." %(self.colliding_module_name,