Restructured to be more python friendly

This commit is contained in:
jr conlin
2011-01-06 21:31:58 -08:00
parent 3c2138ce79
commit ae4e658d35
5 changed files with 303 additions and 0 deletions
@@ -0,0 +1,8 @@
#! /usr/bin/env python
class OAuthSimpleException(Exception):
def __init__(self,value):
self.msg = value
def __str__(self):
return repr(self.msg)