From 209d0e1ea067de8558cbc94ac2d353f9c2a115a6 Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Thu, 16 Apr 2015 12:13:36 +0200 Subject: [PATCH] Correct `install_aliases` --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index aab5470e..b4318f92 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -94,7 +94,7 @@ one of several mechanisms, allowing most moved standard library modules to be accessed under their Python 3 names and locations in Python 2:: from future import standard_library - standard_library.aliases() + standard_library.install_aliases() # Then these Py3-style imports work on both Python 2 and Python 3: import socketserver