view .hgignore @ 6623:5b3568c99cc3

sqlalchemy: remove echo setting from .ini files and create_engine Instead of 'echo' the normal logging configration should be used. Follow the advice from https://docs.sqlalchemy.org/en/rel_1_1/core/engines.html#configuring-logging which says "when using Python logging, ensure all echo flags are set to False at all times".
author domruf <dominikruf@gmail.com>
date Tue, 09 May 2017 17:49:31 +0200
parents 9358211ee144
children 42718729687e
line wrap: on
line source

syntax: glob
*.pyc
*.swp
*.sqlite
*.tox
*.egg-info
*.egg
*.mo
.eggs/
tarballcache/

syntax: regexp
^rcextensions
^build
^dist/
^docs/build/
^docs/_build/
^data$
^sql_dumps/
^\.settings$
^\.project$
^\.pydevproject$
^\.coverage$
^kallithea\.db$
^test\.db$
^Kallithea\.egg-info$
^my\.ini$
^fabfile.py
^\.idea$
^\.cache$
/__pycache__$