Skip to content

Commit

Permalink
Fix SyntaxError.
Browse files Browse the repository at this point in the history
There was an extra comma before ``DEBUG``.
  • Loading branch information
ralphbean committed Jan 21, 2015
1 parent bac5247 commit 6571ca0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions barking_owl/scraper/scraperwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 6571ca0

Please sign in to comment.