1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-31 02:01:13 +00:00

#366 Fix python 2 support

This commit is contained in:
nvbn 2015-09-08 15:32:19 +03:00
parent b8ce95ad68
commit eb17e696c3

View File

@ -1,8 +1,8 @@
from imp import load_source from imp import load_source
import os import os
from subprocess import Popen, PIPE, TimeoutExpired from subprocess import Popen, PIPE
import sys import sys
from psutil import Process from psutil import Process, TimeoutExpired
import six import six
from .conf import settings, DEFAULT_PRIORITY, ALL_ENABLED from .conf import settings, DEFAULT_PRIORITY, ALL_ENABLED
from .utils import compatibility_call from .utils import compatibility_call