From eb17e696c32346453e4f70cbb49e42b44ffcd826 Mon Sep 17 00:00:00 2001 From: nvbn Date: Tue, 8 Sep 2015 15:32:19 +0300 Subject: [PATCH] #366 Fix python 2 support --- thefuck/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thefuck/types.py b/thefuck/types.py index 3c561ae4..d185f18c 100644 --- a/thefuck/types.py +++ b/thefuck/types.py @@ -1,8 +1,8 @@ from imp import load_source import os -from subprocess import Popen, PIPE, TimeoutExpired +from subprocess import Popen, PIPE import sys -from psutil import Process +from psutil import Process, TimeoutExpired import six from .conf import settings, DEFAULT_PRIORITY, ALL_ENABLED from .utils import compatibility_call