1.0.42 (small typo fix)
This commit is contained in:
parent
1f13093f38
commit
f2ff82b337
3 changed files with 6 additions and 4 deletions
|
@ -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.42:
|
||||
Small typo fix (`stackLevel` -> `stacklevel`)
|
||||
#### v.1.0.41:
|
||||
Windows "Support"
|
||||
#### v.1.0.40:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "firepup650"
|
||||
version = "1.0.41"
|
||||
version = "1.0.42"
|
||||
authors = ["Firepup650 <firepyp650@gmail.com>"]
|
||||
description = "Package containing various shorthand things I use, and a few imports I almost always use"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -8,7 +8,7 @@ try:
|
|||
except ImportError:
|
||||
ww(
|
||||
"Warning! This module has reduced functionality on Windows! I hope you know what you're doing!",
|
||||
stackLevel=2,
|
||||
stacklevel=2,
|
||||
)
|
||||
|
||||
import os, sys, time, sqlite3, ast, pydoc # type: ignore[import]
|
||||
|
@ -41,8 +41,8 @@ def alias(func):
|
|||
return decorator
|
||||
|
||||
|
||||
__VERSION__ = "1.0.41"
|
||||
__NEW__ = 'Windows "Support"'
|
||||
__VERSION__ = "1.0.42"
|
||||
__NEW__ = "Small typo fix"
|
||||
__LICENSE__ = "MIT"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue