Browse Source

Fixed not working code

bugfixes
gau1991 10 years ago
parent
commit
4b7709ced6
  1. 2
      ee/cli/controllers/clean.py
  2. 2
      ee/cli/controllers/debug.py

2
ee/cli/controllers/clean.py

@ -5,10 +5,10 @@ from cement.core.controller import CementBaseController, expose
class EECleanController(CementBaseController):
class Meta:
label = 'clean'
interface = controller.IController
stacked_on = 'base'
stacked_type = 'nested'
description = 'clean command cleans different cache with following options'
arguments = [
(['-f', '--foo'],
dict(help='the notorious foo option', dest='foo', action='store',
metavar='TEXT') ),

2
ee/cli/controllers/debug.py

@ -5,10 +5,10 @@ from cement.core.controller import CementBaseController, expose
class EEDebugController(CementBaseController):
class Meta:
label = 'debug'
interface = controller.IController
stacked_on = 'base'
stacked_type = 'nested'
description = 'debug command used for debugging issued with stack or site specific configuration'
arguments = [
(['-f', '--foo'],
dict(help='the notorious foo option', dest='foo', action='store',
metavar='TEXT') ),

Loading…
Cancel
Save