From: Mark Wooding Date: Tue, 4 Feb 2014 14:32:10 +0000 (+0000) Subject: operation.py: Fix stupid typo. X-Git-Tag: 1.0.3~9 X-Git-Url: https://git.distorted.org.uk/~mdw/chopwood/commitdiff_plain/ae21e4f32dfa5f69d9e96394c99ce01b37252b8e operation.py: Fix stupid typo. I don't think that attribute was used for anything. It will be soon, though. --- diff --git a/operation.py b/operation.py index 9a2d1c0..f02b462 100644 --- a/operation.py +++ b/operation.py @@ -124,7 +124,7 @@ class FailOperation (BaseOperation): """A fake operation which just raises an exception.""" def __init__(me, svc, user, exc): me.svc = svc - me.uesr = user + me.user = user me.exc = exc def perform(me): me.result = None