From 6595fe0621815d08547b73af84e6c188b371994b Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 26 Nov 2007 00:17:48 +0000 Subject: [PATCH] fix webseed --- plugins/WebSeed/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/WebSeed/__init__.py b/plugins/WebSeed/__init__.py index 59b7a1594..7f9fab8d4 100644 --- a/plugins/WebSeed/__init__.py +++ b/plugins/WebSeed/__init__.py @@ -75,6 +75,5 @@ class webseedMenu: self.dialog.hide() if response: text = self.glade.get_widget("txt_url").get_text().strip() - if common.is_url(text): + if deluge.common.is_url(text): self.core.add_url_seed(self.unique_ID, text) -