diff options
author | Seth Hitefield <sdhitefield@gmail.com> | 2017-05-03 07:06:54 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2017-05-03 07:07:59 -0700 |
commit | 486e0a9d06e43f3b8669471bef13a5eeedbda4c6 (patch) | |
tree | 7d35c5e7fd530f7ff420b9d3bb77ff5fc9fb2ecf /grc/gui/Config.py | |
parent | 97b842874193394285ca4cdc11da381647c285fd (diff) |
grc: gtk3: Converted actions to Gio.Action instead of Gtk.Action
Diffstat (limited to 'grc/gui/Config.py')
-rw-r--r-- | grc/gui/Config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Config.py b/grc/gui/Config.py index c4d395c0b3..6135296660 100644 --- a/grc/gui/Config.py +++ b/grc/gui/Config.py @@ -48,7 +48,7 @@ class Config(CoreConfig): self.install_prefix = install_prefix Constants.update_font_size(self.font_size) - self.parser = configparser.SafeConfigParser() + self.parser = configparser.ConfigParser() for section in ['main', 'files_open', 'files_recent']: try: self.parser.add_section(section) |