From 061794650f9e44c7881b9365d5d7c6edeb158092 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 29 Jan 2010 10:15:05 +0000 Subject: [PATCH] minor fix --- lib/takeover/upx.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/takeover/upx.py b/lib/takeover/upx.py index f352b6b73..56c423941 100644 --- a/lib/takeover/upx.py +++ b/lib/takeover/upx.py @@ -75,13 +75,13 @@ class UPX: logger.debug("executing local command: %s" % self.__upxCmd) process = execute(self.__upxCmd, shell=True, stdout=PIPE, stderr=STDOUT) - if (self, hasattr('__upxTempExe')): - os.remove(self.__upxTempExe.name) - dataToStdout("\r[%s] [INFO] compression in progress " % time.strftime("%X")) pollProcess(process) upxStdout, upxStderr = process.communicate() + if (self, hasattr('__upxTempExe')): + os.remove(self.__upxTempExe.name) + msg = "failed to compress the file" if "NotCompressibleException" in upxStdout: