File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ def __iter__(self):
197
197
try :
198
198
self ._iterator = iter (self ._response )
199
199
except Exception :
200
- reraise (* _capture_exception (self .hub ))
200
+ reraise (* _capture_exception (self ._hub ))
201
201
return self
202
202
203
203
def __next__ (self ):
@@ -209,7 +209,7 @@ def __next__(self):
209
209
except StopIteration :
210
210
raise
211
211
except Exception :
212
- reraise (* _capture_exception (self .hub ))
212
+ reraise (* _capture_exception (self ._hub ))
213
213
214
214
def close (self ):
215
215
if not self ._popped :
@@ -221,7 +221,7 @@ def close(self):
221
221
except AttributeError :
222
222
pass
223
223
except Exception :
224
- reraise (* _capture_exception (self .hub ))
224
+ reraise (* _capture_exception (self ._hub ))
225
225
226
226
227
227
def _make_wsgi_event_processor (environ ):
You can’t perform that action at this time.
0 commit comments