Skip to content

Instantly share code, notes, and snippets.

@bhearsum
Created July 27, 2012 14:31
Show Gist options
  • Save bhearsum/3188340 to your computer and use it in GitHub Desktop.
Save bhearsum/3188340 to your computer and use it in GitHub Desktop.
key = 'abc'
try:
foo = possibleFoos['%s-url'] % key
except KeyError:
try:
foo = possibleFoos[key]
except KeyError:
raise Exception("Couldn't find URL for %s" % key)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment