Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredredbird committed Apr 19, 2024
1 parent 28517c3 commit cc9fa6e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/configcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ def create_folders(folder_list, language_module):
"defaultdlpath": [],
"language": ["en", "ar", "de", "es", "fr", "hi", "il", "it", "ru"],
"colorscheme": ["RED", "GREEN", "BLUE", "WHITE", "YELLOW", "BLACK"],
"userandomuseragents": ["yes", "no"],
}

# Display config options
Expand All @@ -276,6 +277,7 @@ def display_options(config, section, language_module):
)
#proper translations will be added soon
print(f"[7] Plugin Folder: {config.get('main','pluginfolder')}")
print(f"[8] Use Random User Agents: {config.get('main','userandomuseragents')}")
print("=====================================================")
print(f"{language_module.configOptionA} ")
print(f"{language_module.configOptionB} ")
Expand All @@ -300,6 +302,7 @@ def config_editor(config: configparser.ConfigParser, language_module) -> bool:
"5": ("main", "language"),
"6": ("Personalizations", "colorscheme"),
"7": ("main", "pluginfolder"),
"8": ("main", "userandomuseragents"),
"A": ("main", "option_A"),
"B": ("main", "option_B"),
"a": ("main", "option_A"),
Expand Down

0 comments on commit cc9fa6e

Please sign in to comment.