summaryrefslogtreecommitdiffstats
path: root/Doc/library/rlcompleter.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/rlcompleter.rst')
-rw-r--r--Doc/library/rlcompleter.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/rlcompleter.rst b/Doc/library/rlcompleter.rst
index b882cb0..402a120 100644
--- a/Doc/library/rlcompleter.rst
+++ b/Doc/library/rlcompleter.rst
@@ -33,7 +33,7 @@ automatic :kbd:`Tab` completion::
try:
import readline
except ImportError:
- print "Module readline not available."
+ print("Module readline not available.")
else:
import rlcompleter
readline.parse_and_bind("tab: complete")