From: Mike Bayer Date: Sun, 9 Dec 2012 19:43:49 +0000 (-0500) Subject: typo X-Git-Tag: rel_0_8_0b2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee8dde9f1cfea8529c11e0f35d99a76d51e45322;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo --- diff --git a/doc/build/core/connections.rst b/doc/build/core/connections.rst index d6726015a5..b55ca2a82e 100644 --- a/doc/build/core/connections.rst +++ b/doc/build/core/connections.rst @@ -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