summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-11-26 00:17:48 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-11-26 00:17:48 +0000
commit3fb3bd9233b3f2f8bce22ca15ed656b8756a07b9 (patch)
tree589dca4fbec84c577c13a871efb43ca642272073
parent8dfb4b73eb74dfd7388148dd676d586aaacdcc15 (diff)
downloaddeluge-3fb3bd9233b3f2f8bce22ca15ed656b8756a07b9.tar.gz
deluge-3fb3bd9233b3f2f8bce22ca15ed656b8756a07b9.tar.bz2
deluge-3fb3bd9233b3f2f8bce22ca15ed656b8756a07b9.zip
fix webseed
-rw-r--r--plugins/WebSeed/__init__.py3
1 files changed, 1 insertions, 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)
-