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
commit6595fe0621815d08547b73af84e6c188b371994b (patch)
treebfbb79ea1db85683b51aca2eadafe1274b0c4f0b
parentfd7d1ce67533baa27ac2ba797fa2b2ca2b04bdff (diff)
downloaddeluge-6595fe0621815d08547b73af84e6c188b371994b.tar.gz
deluge-6595fe0621815d08547b73af84e6c188b371994b.tar.bz2
deluge-6595fe0621815d08547b73af84e6c188b371994b.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)
-