summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--yarnlib/elements.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/yarnlib/elements.py b/yarnlib/elements.py
index 9eeb1b7..f6b6f76 100644
--- a/yarnlib/elements.py
+++ b/yarnlib/elements.py
@@ -1,4 +1,4 @@
-# Copyright 2013 Lars Wirzenius
+# Copyright 2013-2014 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -44,8 +44,3 @@ class Implementation(object):
self.regexp = regexp
self.shell = shell
- def execute(self):
- exit, out, err = cliapp.runcmd_unchecked(
- ['sh', '-c', 'set -eu\n' + self.shell])
- return exit
-