Skip to content

Commit

Permalink
Compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Mar 13, 2017
1 parent 971903d commit ec969cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rsqueakvm/plugins/ruby_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class RubyPlugin(Plugin):

def __init__(self):
Plugin.__init__(self)
self.w_ruby_object_class = QuasiConstant(None, type=W_AbstractObjectWithIdentityHash)
self.w_ruby_plugin_send = QuasiConstant(None, type=W_AbstractObjectWithIdentityHash)
self.w_ruby_object_class = QuasiConstant(None, cls=W_AbstractObjectWithIdentityHash)
self.w_ruby_plugin_send = QuasiConstant(None, cls=W_AbstractObjectWithIdentityHash)

def is_optional(self):
return True
Expand Down

0 comments on commit ec969cf

Please sign in to comment.