Browse Source

Add indentation to JSON file

pull/14/head 2.2.1
Richard Neumann 3 years ago
parent
commit
6f14097655
  1. 2
      rcon/gui.py

2
rcon/gui.py

@ -168,7 +168,7 @@ class GUI(Gtk.Window): # pylint: disable=R0902
"""Saves the GUI settings to the cache file."""
try:
with CACHE_FILE.open('w', encoding='utf-8') as cache:
dump(self.gui_settings, cache)
dump(self.gui_settings, cache, indent=2)
except PermissionError:
LOGGER.error('Insufficient permissions to read: %s', CACHE_FILE)

Loading…
Cancel
Save