Skip to content
Snippets Groups Projects
Commit 5df52ebd authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

MNT: Revert python2-incompabilte changes - these snuck in from the drop_py2

branch.
parent 076c896a
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ import atexit
import logging
import functools
import threading
import collections.abc as abc
import collections
try: import queue
except ImportError: import Queue as queue
......@@ -586,7 +586,7 @@ def wait(threads, task, *args, **kwargs):
direct = kwargs.pop('wait_direct', False)
if not isinstance(threads, abc.Sequence):
if not isinstance(threads, collections.Sequence):
threads = [threads]
haveWX = fslplatform.haveGui
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment