Skip to content

Commit

Permalink
Fixed minor issue that prevented the removal of a translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
malthe committed Nov 21, 2012
1 parent 671d782 commit 31d3b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collective/multilingual/graph.py
Expand Up @@ -253,6 +253,6 @@ def removeTranslation(self):
return

obj = result[0].getObject()
obj.translations = obj.translations - set(self.uuid)
obj.translations = obj.translations - set((self.uuid, ))
getPersistentTranslationCounter(self.context).change(1)
return obj

0 comments on commit 31d3b56

Please sign in to comment.