Skip to content

Commit

Permalink
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion kcc/cbxarchive.py
Original file line number Diff line number Diff line change
@@ -23,8 +23,20 @@
import zipfile
import rarfile
import locale
from sys import platform
from subprocess import STDOUT, PIPE
from psutil import Popen
try:
#noinspection PyUnresolvedReferences
from psutil import Popen
except ImportError:
print "ERROR: Psutil is not installed!"
if platform.startswith('linux'):
import Tkinter
import tkMessageBox
importRoot = Tkinter.Tk()
importRoot.withdraw()
tkMessageBox.showerror("KCC - Error", "Psutil is not installed!")
exit(1)
from shutil import move


0 comments on commit 0cf92fc

Please sign in to comment.