Skip to content

Commit

Permalink
variables starting with moa_ are private per definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Aug 3, 2012
1 parent 6a365b3 commit b0172d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/python/moa/jobConf.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ def isPrivate(self, k):
can be locally defined or in the template definition
"""
if k[:4] == 'moa_':
return True

if k in self.private:
return True

Expand Down

0 comments on commit b0172d7

Please sign in to comment.