Remove extranous comma

This commit is contained in:
Joshua Harlow 2015-06-16 23:51:20 -07:00
parent 20af3ceffb
commit 857b24b515
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class Retry(object):
def __init__(self, delay, max_delay,
sleep_func=time.sleep):
self.delay = delay,
self.delay = delay
self.attempts = 0
self.max_delay = max_delay
self.sleep_func = sleep_func