4 Commits

Author SHA1 Message Date
027ca4cb09 Merge branch 'release-0.2.1' back into develop 2021-03-06 17:41:42 +01:00
aee4986957 Prepare release v0.2.1 2021-03-06 17:39:14 +01:00
eed989fd2a euroexchange: Fix removed APISite.getcurrenttime()
Pywikibot removed method  APISite.getcurrenttime replaced with
APISite.server_time
2021-03-06 17:35:02 +01:00
59aaac408d Merge branch 'release-0.2' back into develop 2018-10-21 20:06:02 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ python euroexchange.py
- Checks gnuplot exitcode and only upload chart if successfull created - Checks gnuplot exitcode and only upload chart if successfull created
- Update gnuplot script on commons file description page - Update gnuplot script on commons file description page
* 0.2.1
- Compatibility issue with recent pywikibot fixed
## Bugs ## Bugs
[jogobot-euroexchange Issues](https://git.golderweb.de/wiki/jogobot-euroexchange/issues) [jogobot-euroexchange Issues](https://git.golderweb.de/wiki/jogobot-euroexchange/issues)

View File

@@ -276,7 +276,7 @@ class EuroExchangeBot( pywikibot.bot.BaseBot ):
last_update = self.current_job.filepage.latest_file_info.timestamp last_update = self.current_job.filepage.latest_file_info.timestamp
# Get current time # Get current time
now = pywikibot.Site().getcurrenttime() now = pywikibot.Site().server_time()
# Calculate allowed delta (with tolerance) # Calculate allowed delta (with tolerance)
delta = datetime.timedelta( days=self.current_job.freq, hours=-2 ) delta = datetime.timedelta( days=self.current_job.freq, hours=-2 )