baseclass: Fix timeout_add

This commit is contained in:
Cole Robinson 2011-07-22 19:11:04 -04:00
parent f0019113b6
commit 77063968c9

View File

@ -199,7 +199,7 @@ class vmmGObject(GObject):
"""
Make sure timeout functions are run thread safe
"""
if not hasattr(gobject, "timout_add"):
if not hasattr(gobject, "timeout_add"):
return
return gobject.timeout_add(timeout, _safe_wrapper, func, *args)