summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wasp/wasp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py
index c9f40db..a78f5da 100644
--- a/wasp/wasp.py
+++ b/wasp/wasp.py
@@ -176,7 +176,7 @@ class Manager():
def unregister(self, cls):
for app in self.launcher_ring:
- if instanceof(app, cls):
+ if isinstance(app, cls):
self.launcher_ring.remove(app)
break