view kallithea/lib/dbmigrate/__init__.py @ 6864:7691290837d2

codingstyle: trivial whitespace fixes Reported by flake8.
author Lars Kruse <devel@sumpfralle.de>
date Fri, 25 Aug 2017 14:32:50 +0200
parents 2c3d30095d5e
children d5eaa70e0f2a
line wrap: on
line source

from gearbox.command import Command


class UpgradeDb(Command):
    '''(removed)'''

    deprecated = True

    def run(self, args):
        raise SystemExit(
            'The "paster upgrade-db" command has been removed; please see the docs:\n'
            '    https://kallithea.readthedocs.io/en/default/upgrade.html'
        )