# HG changeset patch # User Aurelien Campeas # Date 1258656521 -3600 # Node ID b0ff58d929a41b6be4923e436c194061eea0057e # Parent 7bb87da97026ff945c660a6b514b716eda3de366 fix typo diff -r 7bb87da97026 -r b0ff58d929a4 server/schemahooks.py --- a/server/schemahooks.py Thu Nov 19 14:28:59 2009 +0100 +++ b/server/schemahooks.py Thu Nov 19 19:48:41 2009 +0100 @@ -963,7 +963,7 @@ # don't use getattr(entity, attr), we would get the modified value if any for attr in ro_attrs: if attr in entity.edited_attributes: - orival, newval = entity_oldnewvalue(entity, attr) + origval, newval = entity_oldnewvalue(entity, attr) if newval != origval: errors[attr] = session._("can't change the %s attribute") % \ display_name(session, attr)