diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-02-15 23:07:02 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-02-15 23:07:02 +0100 |
| commit | 4edf5201ce57bd4f6291bee9730f971d72dd0313 (patch) | |
| tree | 2cc3a375da94524c7765d5cce6aad1536e5ac346 /lib/python/Components | |
| parent | c2217d20163573e3a062463bfe0522e4f70b1fa4 (diff) | |
| parent | 577f94522fe47fd47acf0e665db5d85302415074 (diff) | |
| download | enigma2-4edf5201ce57bd4f6291bee9730f971d72dd0313.tar.gz enigma2-4edf5201ce57bd4f6291bee9730f971d72dd0313.zip | |
Merge branch 'master' of git://git.opendreambox.org/git/acidburn/enigma2-master
Diffstat (limited to 'lib/python/Components')
| -rwxr-xr-x[-rw-r--r--] | lib/python/Components/Console.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Components/Console.py b/lib/python/Components/Console.py index f1f3fd95..7efdf64e 100644..100755 --- a/lib/python/Components/Console.py +++ b/lib/python/Components/Console.py @@ -55,3 +55,8 @@ class Console(object): if self.callbacks[name]: self.callbacks[name](data,retval,extra_args) del self.callbacks[name] + + def kill(self,name): + if self.appContainers.has_key(name): + print "[Console] killing: ",self.appContainers[name] + self.appContainers[name].kill() |
