add_, remove_ -> add_to_, remove_from_

This commit is contained in:
Vincent Jacques
2012-02-13 22:50:51 +01:00
parent 037ad0ab1d
commit dabf8789b9
5 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -104,11 +104,11 @@ class ExtendedListAttribute:
self.__type = type
self.__getName = "get_" + attributeName
if addable:
self.__addName = "add_" + attributeName
self.__addName = "add_to_" + attributeName
else:
self.__addName = None
if removable:
self.__removeName = "remove_" + attributeName
self.__removeName = "remove_from_" + attributeName
else:
self.__removeName = None