Skip to content

Instantly share code, notes, and snippets.

@smerritt
Created May 31, 2013 21:04
Show Gist options
  • Save smerritt/5687987 to your computer and use it in GitHub Desktop.
Save smerritt/5687987 to your computer and use it in GitHub Desktop.
def get_account_info(app, req, account):
return get_info(app, req, account)
def get_container_info(app, req, account, container):
if not container:
raise ValueError("container must be specified, but was %r" % container)
return get_info(app, req, account, container)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment