operation.py: Fix stupid typo.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 4 Feb 2014 14:32:10 +0000 (14:32 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 4 Feb 2014 14:32:10 +0000 (14:32 +0000)
I don't think that attribute was used for anything.  It will be soon,
though.

operation.py

index 9a2d1c0..f02b462 100644 (file)
@@ -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