Skip to content

Instantly share code, notes, and snippets.

@zancas
Last active May 23, 2016 17:20
Show Gist options
  • Save zancas/aab07faf9e55b03e027fc111f1f71d6d to your computer and use it in GitHub Desktop.
Save zancas/aab07faf9e55b03e027fc111f1f71d6d to your computer and use it in GitHub Desktop.
#! /usr/bin/env python
try:
name = kwargs.pop('name')
certname = kwargs.pop('certname')
keyname = kwargs.pop('keyname')
except KeyError as ex:
raise MissingRequiredCreationParameter(ex)
if kwargs:
raise TypeError("Unexpected parameters: %r" kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment