mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-25 14:37:59 +01:00
Add missing self parameter in Selector base class
This commit is contained in:
parent
bb11cfdbb3
commit
751528c4f3
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class Selector:
|
|||
Picks one of the two supplied stories.
|
||||
"""
|
||||
|
||||
def __call__(old, new):
|
||||
def __call__(self, old, new):
|
||||
"""
|
||||
Returns either the old or the new story.
|
||||
|
||||
|
|
Loading…
Reference in a new issue