diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-07 15:24:57 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-07 15:24:57 +0300 |
commit | 15633880010f70d80703af4c5a6ebbccf989ef3e (patch) | |
tree | a03890f505741f7eb0efbb8a8791b34ea7281c69 /py/objstrunicode.c | |
parent | 56eb25f04928132f9921a1163684e626256e2a2c (diff) | |
download | micropython-15633880010f70d80703af4c5a6ebbccf989ef3e.tar.gz micropython-15633880010f70d80703af4c5a6ebbccf989ef3e.zip |
py/objstr,objstrunicode: Fix inconistent #if indentation.
Diffstat (limited to 'py/objstrunicode.c')
-rw-r--r-- | py/objstrunicode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objstrunicode.c b/py/objstrunicode.c index 7b50dfeaa6..8444a26892 100644 --- a/py/objstrunicode.c +++ b/py/objstrunicode.c @@ -250,9 +250,9 @@ STATIC const mp_rom_map_elem_t struni_locals_dict_table[] = { { MP_ROM_QSTR(MP_QSTR_partition), MP_ROM_PTR(&str_partition_obj) }, { MP_ROM_QSTR(MP_QSTR_rpartition), MP_ROM_PTR(&str_rpartition_obj) }, #endif -#if MICROPY_PY_BUILTINS_STR_CENTER + #if MICROPY_PY_BUILTINS_STR_CENTER { MP_ROM_QSTR(MP_QSTR_center), MP_ROM_PTR(&str_center_obj) }, -#endif + #endif { MP_ROM_QSTR(MP_QSTR_lower), MP_ROM_PTR(&str_lower_obj) }, { MP_ROM_QSTR(MP_QSTR_upper), MP_ROM_PTR(&str_upper_obj) }, { MP_ROM_QSTR(MP_QSTR_isspace), MP_ROM_PTR(&str_isspace_obj) }, |