Skip to content

Commit

Permalink
weird style nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Gaynor committed Mar 19, 2013
1 parent 4dff199 commit 8d5f4a1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions topaz/modules/kernel.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -312,8 +312,7 @@ def method_eval(self, space, w_source, w_binding=None):
w_binding = space.newbinding_fromframe(frame) w_binding = space.newbinding_fromframe(frame)
elif not isinstance(w_binding, W_BindingObject): elif not isinstance(w_binding, W_BindingObject):
raise space.error(space.w_TypeError, raise space.error(space.w_TypeError,
"wrong argument type %s (expected Binding)" % "wrong argument type %s (expected Binding)" % space.getclass(w_binding).name
space.getclass(w_binding).name
) )
return space.send(w_binding, space.newsymbol("eval"), [w_source]) return space.send(w_binding, space.newsymbol("eval"), [w_source])


Expand Down

0 comments on commit 8d5f4a1

Please sign in to comment.