From ddce3a862d758d95830dde238e06c38610bdd61f Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 20 Jan 2010 12:11:02 +0000 Subject: [PATCH] URL dragging was broken because Terminator::get_target_terms() makes no assumptions about which terminal to examine, but it used to --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index ea8a9b62..acbb4bcc 100755 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -771,7 +771,7 @@ for %s (%s)' % (name, urlplugin.__class__.__name__)) txt = selection_data.data.strip() if txt[0:7] == 'file://': text = "'%s'" % urllib.unquote(txt[7:]) - for term in self.terminator.get_target_terms(): + for term in self.terminator.get_target_terms(self): term.feed(txt) return