diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-29 20:50:16 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-29 20:50:16 +0300 |
commit | bb35f425f9db5896fe31e2213cb819998816ade6 (patch) | |
tree | 2abfa4883329fde4c6101fc57fc690f5aee2494e /unix/main.c | |
parent | c10a4405cdde0facece3fd8d74be42c571a90ea5 (diff) | |
parent | ec6fa8732b3b30e14e505d9ee004bde260d48255 (diff) | |
download | micropython-bb35f425f9db5896fe31e2213cb819998816ade6.tar.gz micropython-bb35f425f9db5896fe31e2213cb819998816ade6.zip |
Merge pull request #730 from stinos/windows-mpconfig
windows: Sync mpconfigport.h with the unix' version
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/main.c b/unix/main.c index 23615aa988..1bee639eb2 100644 --- a/unix/main.c +++ b/unix/main.c @@ -147,7 +147,7 @@ STATIC char *strjoin(const char *s1, int sep_char, const char *s2) { } STATIC void do_repl(void) { - printf("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; UNIX version\n"); + printf("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_PY_SYS_PLATFORM " version\n"); for (;;) { char *line = prompt(">>> "); |