File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 11language : python
22python :
33 - " nightly"
4- - " 3.8-dev "
4+ - 3.8
55 - 3.7
66 - 3.6
77 - 3.5
8- - 3.4
98sudo : false
109dist : xenial
1110install :
@@ -41,10 +40,6 @@ after_success:
4140 - codecov
4241matrix :
4342 include :
44- - python : 3.5
45- env :
46- - TORNADO="4.5.*"
47- - IPYTHON=master
4843 - python : 3.6
4944 env :
5045 - IPYTHON=master
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ def flush(self):
338338
339339 send will happen in the background thread
340340 """
341- if self .pub_thread .thread .is_alive ():
341+ if self .pub_thread and self . pub_thread . thread is not None and self . pub_thread .thread .is_alive ():
342342 # request flush on the background thread
343343 self .pub_thread .schedule (self ._flush )
344344 # wait for flush to actually get through, if we can.
You can’t perform that action at this time.
0 commit comments