summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2010-08-16 09:46:14 -0500
committerClark Williams <williams@redhat.com>2010-08-16 09:46:14 -0500
commit69d9fc6253ddb96e83cac6d014aeaaa4dbf61ea5 (patch)
treecf10baddf02cd3791f7a5f9a6a9ed8403f42fe81
parentd08cbd19aa4393fcc8d3f0ee6f6040013a967499 (diff)
downloadmock-69d9fc6253ddb96e83cac6d014aeaaa4dbf61ea5.tar.gz
mock-69d9fc6253ddb96e83cac6d014aeaaa4dbf61ea5.tar.xz
mock-69d9fc6253ddb96e83cac6d014aeaaa4dbf61ea5.zip
fix typo in exception.py
Changed __init to __init__ (thanks Jan!) Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--py/mock/exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mock/exception.py b/py/mock/exception.py
index 892851f..284025b 100644
--- a/py/mock/exception.py
+++ b/py/mock/exception.py
@@ -81,7 +81,7 @@ class BadCmdline(Error):
class InvalidArchitecture(Error):
"invalid host/target architecture specified."
- def __init(self, msg):
+ def __init__(self, msg):
Error.__init__(self, msg)
self.msg = msg
self.resultcode = 06