From b9bb1f4db36ce4867f2d76fe04344a6c1d059a90 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 29 Nov 2011 00:03:50 +0100 Subject: [PATCH] Fix curses module for strict SysV implementation (without has_key function) --- Lib/curses/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py index 303ea3e7910..a3e9def72a2 100644 --- a/Lib/curses/__init__.py +++ b/Lib/curses/__init__.py @@ -54,4 +54,4 @@ def start_color(): try: has_key except NameError: - from has_key import has_key + from .has_key import has_key