diff --git a/exec_command/__init__.py b/exec_command/__init__.py
deleted file mode 100644
index b0b1f65ad6caf468412ebbdc6e145f62963d8eb3..0000000000000000000000000000000000000000
--- a/exec_command/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-from exec_command import ExecCommandPlugin
diff --git a/exec_command/exec_command.py b/exec_command/exec_command.py
deleted file mode 100644
index c8e922b1c612560ae962b9d9a9e8a74cf38cf0ab..0000000000000000000000000000000000000000
--- a/exec_command/exec_command.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from plugins import GajimPlugin
-from plugins.helpers import log_calls
-
-from common import gajim
-from command_system.implementation.execute import *
-
-class ExecCommandPlugin(GajimPlugin):
-
-    @log_calls('ExecCommandPlugin')
-    def init(self):
-        self.description = _('Add "show"("sh") command to command system. '
-            'Execute expression inside a shell, send output.')
-        self.config_dialog = None
-
-    @log_calls('ExecCommandPlugin')
-    def activate(self):
-        Show.enable()
-
-    @log_calls('ExecCommandPlugin')
-    def deactivate(self):
-        Show.disable()
diff --git a/exec_command/manifest.ini b/exec_command/manifest.ini
deleted file mode 100644
index 7641f08f040382696f9d5c38c257cc874bbe1e07..0000000000000000000000000000000000000000
--- a/exec_command/manifest.ini
+++ /dev/null
@@ -1,8 +0,0 @@
-[info]
-name: Exec Command
-short_name: exec_command
-version: 0.1
-description: Add "show"("sh") command to command system. Execute expression inside a shell, send output.
-authors = Denis Fomin <fominde@gmail.com>
-homepage = http://trac-plugins.gajim.org/wiki/
-