dirtywords

portable text interface framework  https://pypi.python.org/pypi/dirtywords
git clone https://git.ce9e.org/dirtywords.git

commit
012ae5ee5da86992195a2b7591fe795d26e3c402
parent
62f65d5923d2f767d1a65848ef273d971e853705
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2014-10-07 18:06
use curses by default

Diffstat

M dirtywords/__init__.py 4 ++--

1 files changed, 2 insertions, 2 deletions


diff --git a/dirtywords/__init__.py b/dirtywords/__init__.py

@@ -1,10 +1,10 @@
    1     1 # flake8: noqa
    2     2 
    3     3 try:
    4    -1     from pygame_core import Screen
   -1     4     from curses_core import Screen
    5     5 except ImportError:
    6     6     try:
    7    -1         from curses_core import Screen
   -1     7         from pygame_core import Screen
    8     8     except ImportError:
    9     9         from stupid_core import Screen
   10    10