diff options
author | mathieui <mathieui@mathieui.net> | 2018-07-21 16:47:28 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-07-21 16:47:28 +0200 |
commit | 3ec153a6a01faca5445bb7c21e0d427bb5096320 (patch) | |
tree | d97fbb32e644069363a3b9ce24434828a618c90b | |
parent | a8fc35cf355cf61301dadaf3e92341bfbdbc6b1c (diff) | |
download | poezio-3ec153a6a01faca5445bb7c21e0d427bb5096320.tar.gz poezio-3ec153a6a01faca5445bb7c21e0d427bb5096320.tar.bz2 poezio-3ec153a6a01faca5445bb7c21e0d427bb5096320.tar.xz poezio-3ec153a6a01faca5445bb7c21e0d427bb5096320.zip |
Fix the segfault on exit
-rw-r--r-- | poezio/poezio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/poezio.py b/poezio/poezio.py index 58a8a4d2..6dc51388 100644 --- a/poezio/poezio.py +++ b/poezio/poezio.py @@ -54,7 +54,7 @@ def test_env(): def test_unicode(): - import poopt + from . import poopt try: poopt.wcswidth('✔') except UnicodeError: |