From 4bae1fc99f8c22fa8ba9019778897fac14bc6189 Mon Sep 17 00:00:00 2001 From: Ilan Date: Tue, 4 Aug 2015 12:59:24 +0200 Subject: [PATCH] #40 typo --- django_q/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_q/conf.py b/django_q/conf.py index 0b68759b..fe142cf7 100644 --- a/django_q/conf.py +++ b/django_q/conf.py @@ -65,7 +65,7 @@ class Conf(object): # OSX doesn't implement qsize because of missing sem_getvalue() try: - QSIZE = Queue().qsize == 0 + QSIZE = Queue().qsize() == 0 except NotImplementedError: QSIZE = False