Created
May 31, 2013 21:04
-
-
Save smerritt/5687987 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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