Merge branch 'develop' into add_sys_var

This commit is contained in:
Bastian Schroll 2018-09-19 15:14:21 +02:00 committed by GitHub
commit a2e9156af4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 709 additions and 34 deletions

View file

@ -61,10 +61,10 @@ def infoToLog():
boswatch.version.date["day"],
boswatch.version.date["month"],
boswatch.version.date["year"])
logging.debug("- Python version: " + platform.python_version())
logging.debug("- Python build: " + str(platform.python_build()))
logging.debug("- System: " + platform.system())
logging.debug("- OS Version: " + platform.platform())
logging.debug("- Python version: %s", platform.python_version())
logging.debug("- Python build: %s", platform.python_build())
logging.debug("- System: %s", platform.system())
logging.debug("- OS Version: %s", platform.platform())
logging.debug("")
return True
except: # pragma: no cover