Skip to content

Commit

Permalink
updated version constant, and adjusted try-except in kijiku initialize()
Browse files Browse the repository at this point in the history
  • Loading branch information
Bikatr7 committed Oct 15, 2023
1 parent 74181f6 commit 35b550e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models/Kijiku.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async def initialize(self) -> None:
self.preloader.file_handler.logger.log_action("Used saved api key in " + self.api_key_path)

## else try to get api key manually
except (FileNotFoundError, AuthenticationError):
except:

self.preloader.toolkit.clear_console()

Expand Down
2 changes: 1 addition & 1 deletion modules/toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self) -> None:
"""

self.CURRENT_VERSION = "v2.0.1"
self.CURRENT_VERSION = "v2.1.0"

##-------------------start-of-clear_console()---------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Expand Down

0 comments on commit 35b550e

Please sign in to comment.