~kirkland/eucalyptus/label-metadata

« back to all changes in this revision

Viewing changes to clc/tools/src/euca-modify-property

  • Committer: Neil
  • Date: 2010-06-18 23:43:02 UTC
  • mfrom: (1195.1.47 main)
  • Revision ID: neil@pall-20100618234302-ylt6pznuzk7j09pw
latest merge from main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
from euca_admin.properties import Property
5
5
 
6
6
def main():
7
 
  c = Property()
8
 
  (options, args) = c.parse_modify()
9
 
  c.modify(options.props)
 
7
  c = Property().cli_modify()
10
8
  sys.exit()
11
9
 
12
10
if __name__ == "__main__":