Hello,
I have been using the vorta
package (which uses borg
behind the scenes) for my backups, and they have worked well until a couple days ago when I installed the latest set of Manjaro updates. vorta
is based on Python and QT.
When I try to start vorta
, it gives the following error:
qt5ct: using qt5ct plugin
Traceback (most recent call last):
File "/usr/bin/vorta", line 11, in <module>
load_entry_point('vorta==0.6.22', 'gui_scripts', 'vorta')()
File "/usr/lib/python3.7/site-packages/vorta/__main__.py", line 40, in main
app = VortaApp(sys.argv, single_app=True)
File "/usr/lib/python3.7/site-packages/vorta/application.py", line 47, in __init__
self.scheduler = VortaScheduler(self)
File "/usr/lib/python3.7/site-packages/vorta/scheduler.py", line 20, in __init__
super().__init__()
File "/usr/lib/python3.7/site-packages/apscheduler/schedulers/base.py", line 87, in __init__
self.configure(gconfig, **options)
File "/usr/lib/python3.7/site-packages/apscheduler/schedulers/base.py", line 126, in configure
self._configure(config)
File "/usr/lib/python3.7/site-packages/apscheduler/schedulers/base.py", line 697, in _configure
self.timezone = astimezone(config.pop('timezone', None)) or get_localzone()
File "/usr/lib/python3.7/site-packages/tzlocal/unix.py", line 165, in get_localzone
_cache_tz = _get_localzone()
File "/usr/lib/python3.7/site-packages/tzlocal/unix.py", line 90, in _get_localzone
utils.assert_tz_offset(tz)
File "/usr/lib/python3.7/site-packages/tzlocal/utils.py", line 38, in assert_tz_offset
raise ValueError(msg)
ValueError: Timezone offset does not match system offset: 3600 != 28800. Please, check your config files.
What do these errors means and how might I start to troubleshoot this problem? I noticed that vorta
seems to have a config file in ~/.local/share/Vorta/settings.db
, but when I open it with a text editor it's mostly unreadable. What can I try? /Thanks!