Skip to content

Commit

Permalink
no apps package anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
zalun committed Oct 5, 2012
1 parent 3e6d3ce commit fdf4759
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions example/main.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@


import marketplace import marketplace


commands = {'validate_manifest': app.commands.validate_manifest, commands = {'validate_manifest': commands.validate_manifest,
'is_manifest_valid': app.commands.is_manifest_valid, 'is_manifest_valid': commands.is_manifest_valid,
'create': app.commands.create, 'create': commands.create,
'status': app.commands.status, 'status': commands.status,
'update': app.commands.update, 'update': commands.update,
'add_screenshot': app.commands.add_screenshot, 'add_screenshot': commands.add_screenshot,
'get_screenshot': app.commands.get_screenshot, 'get_screenshot': commands.get_screenshot,
'del_screenshot': app.commands.del_screenshot, 'del_screenshot': commands.del_screenshot,
'get_categories': app.commands.get_categories} 'get_categories': commands.get_categories}


parser = argparse.ArgumentParser(description='Command line Marketplace client') parser = argparse.ArgumentParser(description='Command line Marketplace client')
parser.add_argument('method', type=str, help='command to be run on arguments', parser.add_argument('method', type=str, help='command to be run on arguments',
Expand Down

0 comments on commit fdf4759

Please sign in to comment.