Skip to content

Commit

Permalink
order of decorators is important!
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Aug 2, 2012
1 parent a9276ac commit 4d60dde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/python/moa/plugin/system/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def version(job, args):
print sysConf.getVersion()

@moa.args.private
@moa.args.command
@moa.args.doNotLog
@moa.args.command
def rehash(job, args):
"""
cache a list of variables for command line completion
Expand All @@ -159,8 +159,8 @@ def rehash(job, args):


@moa.args.private
@moa.args.command
@moa.args.doNotLog
@moa.args.command
def raw_commands(job, args):
"""
return a list available commands
Expand All @@ -176,8 +176,8 @@ def raw_commands(job, args):
print ' '.join(c)

@moa.args.private
@moa.args.command
@moa.args.doNotLog
@moa.args.command
def raw_parameters(job, args):
"""
Print a list of all known parameters
Expand Down

0 comments on commit 4d60dde

Please sign in to comment.