diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-06-28 14:53:01 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-06-28 14:53:01 -0700 |
| commit | 1e16e813e8f1f4534db75a6cc251ffaef76e2162 (patch) | |
| tree | f3a9f720b2e8878e694261461356beb01ea0deb4 /atmel-samd | |
| parent | 05f06819660c3819d02c49cd7f4c9f7186b8aa66 (diff) | |
atmel-samd: Update sys.path with correct root path.
Diffstat (limited to 'atmel-samd')
| -rw-r--r-- | atmel-samd/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atmel-samd/main.c b/atmel-samd/main.c index 10a5e56cb..18a3750ce 100644 --- a/atmel-samd/main.c +++ b/atmel-samd/main.c @@ -136,7 +136,7 @@ void reset_mp(void) { mp_init(); mp_obj_list_init(mp_sys_path, 0); mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script) - mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash)); + mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_)); mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib)); mp_obj_list_init(mp_sys_argv, 0); } |
