diff --git a/README.md b/README.md index 2903077..96adf89 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ python euroexchange.py - Checks gnuplot exitcode and only upload chart if successfull created - Update gnuplot script on commons file description page +* 0.2.1 + - Compatibility issue with recent pywikibot fixed + ## Bugs [jogobot-euroexchange Issues](https://git.golderweb.de/wiki/jogobot-euroexchange/issues) diff --git a/euroexchange/euroexchange.py b/euroexchange/euroexchange.py index a82940e..c7f9edc 100644 --- a/euroexchange/euroexchange.py +++ b/euroexchange/euroexchange.py @@ -276,7 +276,7 @@ class EuroExchangeBot( pywikibot.bot.BaseBot ): last_update = self.current_job.filepage.latest_file_info.timestamp # Get current time - now = pywikibot.Site().getcurrenttime() + now = pywikibot.Site().server_time() # Calculate allowed delta (with tolerance) delta = datetime.timedelta( days=self.current_job.freq, hours=-2 )