diff --git a/docs/source/guides/module.rst b/docs/source/guides/module.rst index 3b62a16f7483d5b24ae6862c3696d4985684cb1b..ae14bd17a153eda551bccf83e4b120539d83abbd 100644 --- a/docs/source/guides/module.rst +++ b/docs/source/guides/module.rst @@ -497,4 +497,4 @@ are empty (set to ``NotLoaded``): * **date** - date of thread As our method :func:`get_thread ` will get all -of the missing informations, we just call it with the object as parameter to complete it. +of the missing data, we just call it with the object as parameter to complete it. diff --git a/modules/boursorama/pages/login.py b/modules/boursorama/pages/login.py index 1a6ac7e7626bac5996e4e75dbff2f8092b3d004b..75e7dcdb532229a3f14174e2143806d208c72463 100644 --- a/modules/boursorama/pages/login.py +++ b/modules/boursorama/pages/login.py @@ -102,4 +102,4 @@ def login(self, login, password): class UpdateInfoPage(BasePage): def on_loaded(self): - raise BrowserIncorrectPassword('Please update your user informations') + raise BrowserIncorrectPassword('Please update your login credentials') diff --git a/modules/freemobile/pages/history.py b/modules/freemobile/pages/history.py index 1eab151e6959591d6819ce8efd734de7bd125d4a..ef3b0914e843b67c026d9656105cb3d7f2d42c71 100644 --- a/modules/freemobile/pages/history.py +++ b/modules/freemobile/pages/history.py @@ -69,7 +69,7 @@ def on_load(self): def _parse_div(self, divglobal, string, num, inter=False): divs = divglobal.xpath('div[@class="detail"]') - # Two informations in one div... + # Two pieces of information in one div... div = divs.pop(0) voice = self._parse_voice(div, string, num, inter) self.details[num].append(voice) diff --git a/modules/imdb/pages.py b/modules/imdb/pages.py index af91b4369740126bfae96f55f64342e7afd9f784..5426bd77d3dbb42fd6f5c6399fdf7e40f0bf2f8f 100644 --- a/modules/imdb/pages.py +++ b/modules/imdb/pages.py @@ -128,7 +128,7 @@ def iter_persons_ids(self): class PersonPage(BasePage): - ''' Page giving informations about a person + ''' Page informing about a person It is used to build a Person instance and to get the movie list related to a person ''' def get_person(self, id): diff --git a/modules/ing/browser.py b/modules/ing/browser.py index 614bd7b1b8697fb0031d722156a5841521cf3da7..4726956d2303c70511f731be5f927e24c7284e56 100644 --- a/modules/ing/browser.py +++ b/modules/ing/browser.py @@ -105,7 +105,7 @@ def get_history(self, account): self.logger.info('There is no history for this account') return - index = 0 # index, we get always the same page, but with more informations + index = 0 # index, we get always the same page, but with more data hashlist = [] while True: i = index diff --git a/modules/opensubtitles/pages.py b/modules/opensubtitles/pages.py index 586f34baa08ba84bbac9d464eedec1591cf37564..174bc402f9f3b0f41490ab95100b1e5b0fc9ef23 100644 --- a/modules/opensubtitles/pages.py +++ b/modules/opensubtitles/pages.py @@ -56,7 +56,7 @@ def iter_subtitles(self): tabresults = self.parser.select(self.document.getroot(), 'table#search_results') if len(tabresults) > 0: table = tabresults[0] - # for each result line, get informations + # for each result line, get the data # why following line doesn't work all the time (for example 'search fr sopranos guy walks' ? # for line in self.parser.select(table,'tr'): for line in table.getiterator('tr'):