URL dragging was broken because Terminator::get_target_terms() makes no assumptions about which terminal to examine, but it used to

This commit is contained in:
Chris Jones 2010-01-20 12:11:02 +00:00
parent db7b0cc0a0
commit ddce3a862d
1 changed files with 1 additions and 1 deletions

View File

@ -771,7 +771,7 @@ for %s (%s)' % (name, urlplugin.__class__.__name__))
txt = selection_data.data.strip() txt = selection_data.data.strip()
if txt[0:7] == 'file://': if txt[0:7] == 'file://':
text = "'%s'" % urllib.unquote(txt[7:]) 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) term.feed(txt)
return return