renamed sncf backend to canaltp

This commit is contained in:
Romain Bignon 2010-03-23 15:10:40 +01:00
commit 267a2a9947
3 changed files with 3 additions and 3 deletions

View file

@ -18,4 +18,4 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""
from .backend import SNCFBackend
from .backend import CanalTPBackend

View file

@ -21,9 +21,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
from weboob.backend import Backend
from weboob.capabilities.travel import ICapTravel, Station, Departure
from .canaltp import CanalTP
from .browser import CanalTP
class SNCFBackend(Backend, ICapTravel):
class CanalTPBackend(Backend, ICapTravel):
def __init__(self, weboob):
Backend.__init__(self, weboob)