From 59ea02c1fc314beff04f5daf3ff2d0e3d6dbf281 Mon Sep 17 00:00:00 2001 From: Rob Dennis Date: Sat, 4 Sep 2010 05:36:48 +0800 Subject: [PATCH] removal of extraneous comments --- plugins/tvdb.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/tvdb.py b/plugins/tvdb.py index 326939d..2958754 100644 --- a/plugins/tvdb.py +++ b/plugins/tvdb.py @@ -21,7 +21,6 @@ def tv_next(inp): try: query = http.get_xml(base_url + 'GetSeries.php', seriesname=inp) except URLError: - #outputs on timeout return "error contacting thetvdb.com" series_id = query.xpath('//seriesid/text()') @@ -35,7 +34,6 @@ def tv_next(inp): series = http.get_xml(base_url + '%s/series/%s/all/en.xml' % (api_key, series_id)) except URLError: - #outputs on timeout return "error contacting thetvdb.com" series_name = series.xpath('//SeriesName/text()')[0]