Don't print git hash as well as git tag in banner.

This commit is contained in:
Damien George
2014-05-03 19:08:02 +01:00
parent 1549f17038
commit 6ec835dfef
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@ STATIC char *prompt(char *p) {
}
STATIC void do_repl(void) {
printf("Micro Python " MICROPY_GIT_TAG " (" MICROPY_GIT_HASH " on " MICROPY_BUILD_DATE "); UNIX version\n");
printf("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; UNIX version\n");
for (;;) {
char *line = prompt(">>> ");