diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-11-01 05:01:47 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-11-01 05:01:47 +0200 |
commit | 41a6a8625775d91e19ccacfed5e83d435dff6997 (patch) | |
tree | 626018163c6a2ff89a15765b3de9d9644a1107d2 /lib_pypy/_curses_build.py | |
parent | fix #3108: the map based parser didn't deal with json dicts with repeated keys (diff) | |
download | pypy-41a6a8625775d91e19ccacfed5e83d435dff6997.tar.gz pypy-41a6a8625775d91e19ccacfed5e83d435dff6997.tar.bz2 pypy-41a6a8625775d91e19ccacfed5e83d435dff6997.zip |
fix failing test, remove tab
Diffstat (limited to 'lib_pypy/_curses_build.py')
-rw-r--r-- | lib_pypy/_curses_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_pypy/_curses_build.py b/lib_pypy/_curses_build.py index 96fa1cf599..a16b45f98f 100644 --- a/lib_pypy/_curses_build.py +++ b/lib_pypy/_curses_build.py @@ -21,7 +21,7 @@ def find_curses_include_dirs(): if os.path.exists('/usr/include/ncurses'): return ['/usr/include/ncurses'] if os.path.exists('/usr/include/ncursesw'): - return ['/usr/include/ncursesw'] + return ['/usr/include/ncursesw'] return [] |