From 04820fd782201030ec44415791c5d9214b060857 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Mon, 26 Apr 2010 19:46:32 +0200 Subject: [PATCH] removed unused command --- weboob/frontends/videoob/application.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/weboob/frontends/videoob/application.py b/weboob/frontends/videoob/application.py index 367b7d8b..7f3ac13f 100644 --- a/weboob/frontends/videoob/application.py +++ b/weboob/frontends/videoob/application.py @@ -70,11 +70,3 @@ class Videoob(ConsoleApplication): results[backend.name] = [(video.id, video.title, video.formatted_duration) for video in backend.iter_search_results(pattern=pattern)] return results - - @ConsoleApplication.command('Get video file URL from page URL') - def command_file_url(self, url): - for backend in self.weboob.iter_backends(): - video = backend.get_video(url) - if video: - print video.url - break