From fe39cb4557b083abd893ea9c89a817c3201f1728 Mon Sep 17 00:00:00 2001 From: joamag Date: Mon, 29 Dec 2014 16:46:52 +0000 Subject: [PATCH] small code fix --- src/quorum/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quorum/model.py b/src/quorum/model.py index b1128aa9..d5e1880e 100644 --- a/src/quorum/model.py +++ b/src/quorum/model.py @@ -432,7 +432,7 @@ def generate(**kwargs): reverse = REVERSE.get(direction, "descending") # verifies if the sorter value is defined in the arguments and if that's - # the case verifies if ir's the same as the current one if that the case + # the case verifies if it's the same as the current one if that the case # the direction must be reversed otherwise the default direction is set if sorter and sorter == _sorter: params["direction"] = reverse elif sorter: params["direction"] = "descending"