From 7fec8bf400e93081499bb70a16072e51fbcd529e Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Tue, 6 Jul 2010 12:12:35 +0200 Subject: [PATCH] change command description --- weboob/frontends/travel/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/frontends/travel/application.py b/weboob/frontends/travel/application.py index 84c99598..457ea087 100644 --- a/weboob/frontends/travel/application.py +++ b/weboob/frontends/travel/application.py @@ -38,7 +38,7 @@ class Travel(ConsoleApplication): for backend, station in self.weboob.do('iter_station_search', pattern): self.format(station, backend.name) - @ConsoleApplication.command('List all departures on a special station') + @ConsoleApplication.command('List all departures for a given station') def command_departures(self, station, arrival=None): for backend, departure in self.weboob.do('iter_station_departures', station, arrival): self.format(departure, backend.name)