From 76626fa9acf602c766fb1a067cc8b46cce4e8c95 Mon Sep 17 00:00:00 2001 From: Sébastien Larinier Date: Wed, 20 Jul 2016 09:58:03 +0200 Subject: [PATCH] correct bug in print --- oletools/olevba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oletools/olevba.py b/oletools/olevba.py index 6a94ba5..1e3d78e 100755 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -2902,7 +2902,7 @@ class VBA_Parser_CLI(VBA_Parser): """ # print a waiting message only if the output is not redirected to a file: if sys.stdout.isatty(): - print('Analysis...%s\r') + print('Analysis...\r') sys.stdout.flush() return [dict(type=kw_type, keyword=keyword, description=description) for kw_type, keyword, description in self.analyze_macros(show_decoded_strings, deobfuscate)] -- libgit2 0.21.4