From 2c26ebdc18da28597afcdb4d0917cb8f67266e18 Mon Sep 17 00:00:00 2001 From: craig-warren Date: Fri, 10 Feb 2017 10:03:09 +0100 Subject: [PATCH] Tidy formatting of Windows bit printing. --- gprMax/utilities.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gprMax/utilities.py b/gprMax/utilities.py index 7a175d35..d9f44be6 100644 --- a/gprMax/utilities.py +++ b/gprMax/utilities.py @@ -140,9 +140,9 @@ def get_host_info(): cpuID = subprocess.check_output("wmic cpu get Name", shell=True).decode('utf-8').strip() cpuID = cpuID.split('\n')[1] if platform.machine().endswith('64'): - osbit = '(64-bit)' + osbit = ' (64-bit)' else: - osbit = '(32-bit)' + osbit = ' (32-bit)' osversion = 'Windows ' + platform.release() + osbit # Mac OS X/macOS