From 65c1011d5b91a7cfa6e656583a5c07fe8e841154 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 8 Jan 2009 16:18:02 +0000 Subject: [PATCH] restore Stephen's extra conditional, since it does make sense --- terminatorlib/terminatorterm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminatorterm.py b/terminatorlib/terminatorterm.py index 08be0b75..b355822a 100755 --- a/terminatorlib/terminatorterm.py +++ b/terminatorlib/terminatorterm.py @@ -320,7 +320,7 @@ text/plain if txt[0:7] == "file://": txt = "'%s'" % txt[7:] for term in self.terminator.term_list: - if term == self or term._group == self._group: + if term == self or (self.group != None and term._group == self._group): term._vte.feed_child(txt) return