~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/pyext/dbtable.py

  • Committer: Monty Taylor
  • Date: 2011-03-07 23:34:58 UTC
  • mfrom: (2222.1.2 build)
  • Revision ID: mordred@inaugust.com-20110307233458-dq1u12wfycxu5d79
Merged Clint - Regex Policy auth plugin.
Merged Monty - Fix for old broken sphinxes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
15
 
16
16
def setup(app):
17
 
    app.add_description_unit('dbtable', 'dbtable',
18
 
                             objname='database table',
19
 
                             indextemplate='pair: %s; database table')
 
17
    try:
 
18
        app.add_description_unit('dbtable', 'dbtable',
 
19
                                 objname='database table',
 
20
                                 indextemplate='pair: %s; database table')
 
21
    except TypeError:
 
22
        # We have to trap for this because of Sphinx 0.6.2
 
23
        pass
 
24