##// END OF EJS Templates
tg: minimize future diff by some mocking and replacing some pylons imports with tg...
tg: minimize future diff by some mocking and replacing some pylons imports with tg No actual tg dependency yet, just a temporary hack faking tg as an alias for pylons. Based on work by Alessandro Molina.

File last commit:

r5986:9fd64dd2 default
r6508:e9ac5698 default
Show More
__init__.py
11 lines | 336 B | text/x-python | PythonLexer
Søren Løvborg
paster: add informational/dummy "upgrade-db" command...
r5979 from paste.script.command import Command
class UpgradeDb(Command):
hidden = True
summary = '(removed)'
def run(self, args):
Søren Løvborg
docs: document how to use Alembic for database migrations
r5986 raise SystemExit(
'The "paster upgrade-db" command has been removed; please see the docs:\n'
' https://kallithea.readthedocs.io/en/default/upgrade.html'
)