summaryrefslogtreecommitdiff
path: root/Lib/curses
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-29 00:06:10 +0100
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-29 00:06:10 +0100
commit5d7c9aba29ee73ce5708f97beb1371222cc5889e (patch)
tree46b0bcdf4db86bd4e3529604ffb0b5c637b0eac1 /Lib/curses
parent1439c77417c75737141ea3b1638a396175b6865c (diff)
parentb9bb1f4db36ce4867f2d76fe04344a6c1d059a90 (diff)
downloadcpython-git-5d7c9aba29ee73ce5708f97beb1371222cc5889e.tar.gz
(Merge 3.2) Fix curses module for strict SysV implementation (without has_key function)
Diffstat (limited to 'Lib/curses')
-rw-r--r--Lib/curses/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py
index 61ce443a68..7bfa6673d7 100644
--- a/Lib/curses/__init__.py
+++ b/Lib/curses/__init__.py
@@ -53,7 +53,7 @@ def start_color():
try:
has_key
except NameError:
- from has_key import has_key
+ from .has_key import has_key
# Wrapper for the entire curses-based application. Runs a function which
# should be the rest of your curses-based application. If the application