]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 9 Dec 2012 19:43:49 +0000 (14:43 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 9 Dec 2012 19:43:49 +0000 (14:43 -0500)
doc/build/core/connections.rst

index d6726015a5a90f2ef8e241bc1002d831312eab4d..b55ca2a82eb033c7cbd9cbd39d86d4bf71622839 100644 (file)
@@ -483,7 +483,7 @@ Registering Dialects In-Process
 SQLAlchemy also allows a dialect to be registered within the current process, bypassing
 the need for separate installation.   Use the ``register()`` function as follows::
 
-    from sqlalchemy.dialects import register
+    from sqlalchemy.dialects import registry
     registry.register("mysql.foodialect", "myapp.dialect", "MyMySQLDialect")
 
 The above will respond to ``create_engine("mysql+foodialect://")`` and load the