From 751528c4f3ecc052bfd38ce42bdb2f9a583e6fd4 Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Wed, 6 Sep 2017 20:24:54 +0200 Subject: [PATCH] Add missing self parameter in Selector base class --- fimfarchive/selectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fimfarchive/selectors.py b/fimfarchive/selectors.py index de78f0c..a579337 100644 --- a/fimfarchive/selectors.py +++ b/fimfarchive/selectors.py @@ -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.