X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=blobdiff_plain;f=src%2Fgv_backend.py;h=aca5b9b6d19cd30f1af55122bd81c7a2da32c976;hp=aa55fd7b9eaea801ac9bb0a80b03521e230a187c;hb=87f4ba1dcb426f8fe015a7bfb6e68d0907170a1f;hpb=9094886fbed1258ca1a266559485072896b0e183 diff --git a/src/gv_backend.py b/src/gv_backend.py index aa55fd7..aca5b9b 100644 --- a/src/gv_backend.py +++ b/src/gv_backend.py @@ -374,12 +374,12 @@ class GVDialer(object): tokenGroup = self._tokenRe.search(page) if tokenGroup is None: - raise RuntimeError("Could not extract authentication token from GrandCentral") + raise RuntimeError("Could not extract authentication token from GoogleVoice") self._token = tokenGroup.group(1) anGroup = self._accountNumRe.search(page) if anGroup is None: - raise RuntimeError("Could not extract account number from GrandCentral") + raise RuntimeError("Could not extract account number from GoogleVoice") self._accountNum = anGroup.group(1) self._callbackNumbers = {}