[acronyms] Use absolute path

This commit is contained in:
Philipp Hörist
2018-10-15 07:55:16 +02:00
parent ea08ee5bde
commit 68a286d44a

View File

@@ -38,7 +38,7 @@ class ConfigDialog(Gtk.ApplicationWindow):
self.set_destroy_with_parent(True) self.set_destroy_with_parent(True)
ui_path = Path(__file__).parent ui_path = Path(__file__).parent
self._ui = get_builder(ui_path / 'config.ui') self._ui = get_builder(ui_path.resolve() / 'config.ui')
self._plugin = plugin self._plugin = plugin