diff options
author | louis <louis.braun@gmx.de> | 2013-08-24 09:20:49 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-08-24 09:20:49 +0200 |
commit | dddfcb99243b0e133d369fcab18021020d1a1eec (patch) | |
tree | 91763cd60675028f0dba1eb93e11dfabc113aa99 /thetvdbscraper | |
parent | 56e54e2e23fd13bc3b5503809b26c35c066fc977 (diff) | |
download | vdr-plugin-tvscraper-dddfcb99243b0e133d369fcab18021020d1a1eec.tar.gz vdr-plugin-tvscraper-dddfcb99243b0e133d369fcab18021020d1a1eec.tar.bz2 |
fixed some further typos
Diffstat (limited to 'thetvdbscraper')
-rw-r--r-- | thetvdbscraper/thetvdbscraper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thetvdbscraper/thetvdbscraper.c b/thetvdbscraper/thetvdbscraper.c index 5695ba0..c0ab68b 100644 --- a/thetvdbscraper/thetvdbscraper.c +++ b/thetvdbscraper/thetvdbscraper.c @@ -24,7 +24,7 @@ cTVDBScraper::~cTVDBScraper() { void cTVDBScraper::Scrap(const cEvent *event, int recordingID) {
string seriesName = event->Title();
if (config.enableDebug)
- esyslog("tvscraper: scrapping series \"%s\"", seriesName.c_str());
+ esyslog("tvscraper: scraping series \"%s\"", seriesName.c_str());
int eventID = (int)event->EventID();
cTVDBSeries *series = ReadSeries(seriesName);
cTVDBSeriesMedia *media = NULL;
@@ -56,7 +56,7 @@ void cTVDBScraper::Scrap(const cEvent *event, int recordingID) { if (actors)
delete actors;
if (config.enableDebug)
- esyslog("tvscraper: \"%s\" successfully scrapped, id %d", seriesName.c_str(), series->ID());
+ esyslog("tvscraper: \"%s\" successfully scraped, id %d", seriesName.c_str(), series->ID());
}
|