diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-03 19:08:02 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-03 19:08:02 +0100 |
commit | 6ec835dfef90a2f940a24b126cba8e3d8ede1ef2 (patch) | |
tree | 6ea5ce8b48c252c1d93b229a49d6199e18efffe7 /stmhal | |
parent | 1549f17038533aa2b774d2f863d80b14dd5eb412 (diff) |
Don't print git hash as well as git tag in banner.v1.0
Diffstat (limited to 'stmhal')
-rw-r--r-- | stmhal/pyexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c index ded20e148..00025c8c6 100644 --- a/stmhal/pyexec.c +++ b/stmhal/pyexec.c @@ -155,7 +155,7 @@ int pyexec_friendly_repl(void) { #endif friendly_repl_reset: - stdout_tx_str("Micro Python " MICROPY_GIT_TAG " (" MICROPY_GIT_HASH " on " MICROPY_BUILD_DATE "); " MICROPY_HW_BOARD_NAME " with STM32F405RG\r\n"); + stdout_tx_str("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with STM32F405RG\r\n"); stdout_tx_str("Type \"help()\" for more information.\r\n"); // to test ctrl-C |