##// END OF EJS Templates
paster: add informational/dummy "upgrade-db" command...
Søren Løvborg -
r5979:c436f337 default
parent child Browse files
Show More
@@ -0,0 +1,8 b''
1 from paste.script.command import Command
2
3 class UpgradeDb(Command):
4 hidden = True
5 summary = '(removed)'
6
7 def run(self, args):
8 raise SystemExit('The "paster upgrade-db" command has been removed.')
@@ -180,6 +180,7 b' setup('
180 cache-keys=kallithea.lib.paster_commands.cache_keys:Command
180 cache-keys=kallithea.lib.paster_commands.cache_keys:Command
181 ishell=kallithea.lib.paster_commands.ishell:Command
181 ishell=kallithea.lib.paster_commands.ishell:Command
182 make-index=kallithea.lib.paster_commands.make_index:Command
182 make-index=kallithea.lib.paster_commands.make_index:Command
183 upgrade-db=kallithea.lib.dbmigrate:UpgradeDb
183 celeryd=kallithea.lib.celerypylons.commands:CeleryDaemonCommand
184 celeryd=kallithea.lib.celerypylons.commands:CeleryDaemonCommand
184 install-iis=kallithea.lib.paster_commands.install_iis:Command
185 install-iis=kallithea.lib.paster_commands.install_iis:Command
185 """,
186 """,
General Comments 0
You need to be logged in to leave comments. Login now