"gemini" removed from settings.

This commit is contained in:
Sam Hunter 2021-08-12 15:04:01 +02:00
parent 4375aad574
commit e18ff5eaf9
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class DefaultUser:
"""Saves config data to file"""
config = configparser.ConfigParser()
config["User Status"] = {"lastlogin": time()}
config["User Settings"] = {"browser": self.browser, "gemini": self.gemini}
config["User Settings"] = {"browser": self.browser}
config["URL Handler"] = self.handler
with open(self.settingsfile, "w") as file: