From cb6bb97d417460c72d9b000bf2bbf05e03cf1296 Mon Sep 17 00:00:00 2001 From: Raul Gutierrez Segales Date: Mon, 31 Jan 2011 17:26:22 +0000 Subject: Add collaboration support from Gnome --- (limited to 'extra/plugin.py') diff --git a/extra/plugin.py b/extra/plugin.py new file mode 100644 index 0000000..fe95f95 --- /dev/null +++ b/extra/plugin.py @@ -0,0 +1,10 @@ + +import gobject + +class Plugin(gobject.GObject): + def __init__(self): + gobject.GObject.__init__(self) + + def get_menu(self): + raise RuntimeError("You need to define get_menu for your plugin.") + -- cgit v0.9.1