summaryrefslogtreecommitdiff
path: root/plugins/exception.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--plugins/exception.py (renamed from portato/plugins/gpytage.py)12
1 files changed, 8 insertions, 4 deletions
diff --git a/portato/plugins/gpytage.py b/plugins/exception.py
index 22cc7ef..e653853 100644
--- a/portato/plugins/gpytage.py
+++ b/plugins/exception.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
-# File: portato/plugins/gpytage.py
+# File: plugins/exception.py
# This file is part of the Portato-Project, a graphical portage-frontend.
#
# Copyright (C) 2008 René 'Necoro' Neumann
@@ -10,7 +10,11 @@
#
# Written by René 'Necoro' Neumann <necoro@necoro.net>
-from subprocess import Popen
+def throw (*args, **kwargs):
+ raise Exception, "As requested, Sir!"
-def gpytage(*args, **kwargs):
- Popen(["/usr/bin/gpytage"])
+p = Plugin()
+p.__name__ = "ExceptionThrower"
+p.__author__ = "René 'Necoro' Neumann"
+p.add_menu("Throw exception", throw)
+register(p)