From 6571ca0b8cf00c8c15bc8c9e8c0466b6ef66b226 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 21 Jan 2015 16:54:07 -0500 Subject: [PATCH] Fix SyntaxError. There was an extra comma before ``DEBUG``. --- barking_owl/scraper/scraperwrapper.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/barking_owl/scraper/scraperwrapper.py b/barking_owl/scraper/scraperwrapper.py index 7a1e1ad..ce73942 100644 --- a/barking_owl/scraper/scraperwrapper.py +++ b/barking_owl/scraper/scraperwrapper.py @@ -19,9 +19,13 @@ def log(text, DEBUG=False): class ScraperWrapper(threading.Thread): - def __init__(self,address='localhost',exchange='barkingowl', - broadcast_interval=5,url_parameters=None, uid=str(uuid.uuid4()), \ - ,DEBUG=False): + def __init__(self, + address='localhost', + exchange='barkingowl', + broadcast_interval=5, + url_parameters=None, + uid=str(uuid.uuid4()), + DEBUG=False): threading.Thread.__init__(self)