##// END OF EJS Templates
py3: replace list comprehension with for-loop due to scope...
py3: replace list comprehension with for-loop due to scope The scope of the list comprehension variable 'x' will be limited to the list comprehension in python3. Thus switching to a full loop (without this scope restriction) in preparation for python3.

File last commit:

r6509:2c3d3009 default
r6788:bfd7fc9a default
Show More
__init__.py
12 lines | 330 B | text/x-python | PythonLexer
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'
)