Skip to content

Commit

Permalink
[v0.3.3] Updated error information in interactive mode.
Browse files Browse the repository at this point in the history
Signed-off-by: Chris1320 <chris1320is@protonmail.com>
  • Loading branch information
Chris1320 committed Jan 20, 2022
1 parent 1af6b11 commit b5d95c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config_handler/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def main():
return 2

except Exception as e:
print("\n[E] An error occurred:", e)
print("\n[E] An unexpected error occurred:", e)
input("Press enter to continue...")
return 1

Expand Down
2 changes: 1 addition & 1 deletion config_handler/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
"""

name = "ConfigHandler"
version = (0, 3, 2)
version = (0, 3, 3)
title = f"{name} v{'.'.join(map(str, version))}"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="py-config_handler",
version="0.3.2",
version="0.3.3",
description="Create, update, and remove values from a configuration file made by ConfigHandler.",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b5d95c4

Please sign in to comment.