From e2ecd8699a8f0d1bb8f0e32e5d627a13513784ed Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 3 Sep 2024 09:31:25 -0500 Subject: [PATCH] 1.0.43 --- package/README.md | 2 ++ package/pyproject.toml | 2 +- package/src/firepup650/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package/README.md b/package/README.md index 731255d..14fadc5 100644 --- a/package/README.md +++ b/package/README.md @@ -1,6 +1,8 @@ # Firepup650 Package containing various shorthand things I use, and a few imports I almost always use ### Change log: +#### v.1.0.43: +Called the error the wrong thing #### v.1.0.42: Small typo fix (`stackLevel` -> `stacklevel`) #### v.1.0.41: diff --git a/package/pyproject.toml b/package/pyproject.toml index 4c06eaf..dfd596c 100644 --- a/package/pyproject.toml +++ b/package/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "firepup650" -version = "1.0.42" +version = "1.0.43" authors = ["Firepup650 "] description = "Package containing various shorthand things I use, and a few imports I almost always use" readme = "README.md" diff --git a/package/src/firepup650/__init__.py b/package/src/firepup650/__init__.py index 1408a07..83251bc 100644 --- a/package/src/firepup650/__init__.py +++ b/package/src/firepup650/__init__.py @@ -46,7 +46,7 @@ __NEW__ = "Small typo fix" __LICENSE__ = "MIT" -class NotImplementedOnWindowsException(NotImplementedException): +class NotImplementedOnWindowsException(NotImplementedError): """Exception raised when a Linux only method is called on a Windows machine"""