summaryrefslogtreecommitdiff
path: root/grc/main.py
diff options
context:
space:
mode:
authorSeth Hitefield <sdhitefield@gmail.com>2017-07-30 17:58:36 -0400
committerSeth Hitefield <sdhitefield@gmail.com>2017-07-30 17:58:36 -0400
commit82e2e9eb63ae92ad55a28a8c01564de5045b8056 (patch)
tree6c88a7cc07330fc0fa5aecd817d2df730b8919d8 /grc/main.py
parent26ddf9a6597eb92d7be7673430f6f2915a60c7dd (diff)
grc: Starts on both Python 2 and 3
Diffstat (limited to 'grc/main.py')
-rwxr-xr-xgrc/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/grc/main.py b/grc/main.py
index 2d182c226f..4f4cd68704 100755
--- a/grc/main.py
+++ b/grc/main.py
@@ -71,7 +71,8 @@ def main():
console.setFormatter(formatter)
log.addHandler(console)
- log.debug("Running main")
+ py_version = sys.version.split()[0]
+ log.debug("Starting GNU Radio Companion ({})".format(py_version))
# Delay importing until the logging is setup
from .gui.Platform import Platform