Skip to content

Commit 92e64f0

Browse files
Bug fixes.
1 parent 446cd26 commit 92e64f0

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGES-LOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Help this project by [Donation](DONATE.md)
66
Changes log
77
-----------
88

9-
### 2.1.4
9+
### 2.1.4-5
1010

1111
Bug fixes.
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ python setup.py install
5050
Changes
5151
-------
5252

53-
### 2.1.4
53+
### 2.1.5
5454

5555
Bug fixes.
5656

log21/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from log21.Formatters import ColorizingFormatter, DecolorizingFormatter
2020
from log21.Colors import Colors, get_color, get_colors, ansi_escape, get_color_name, closest_color
2121

22-
__version__ = "2.1.4"
22+
__version__ = "2.1.5"
2323
__author__ = "CodeWriter21 (Mehrad Pooryoussof)"
2424
__github__ = "Https://GitHub.com/MPCodeWriter21/log21"
2525
__all__ = ['ColorizingStreamHandler', 'DecolorizingFileHandler', 'ColorizingFormatter', 'DecolorizingFormatter',
@@ -219,7 +219,7 @@ def print(*msg, args: tuple = (), end='\033[0m\n', **kwargs):
219219

220220
def input(*msg, args: tuple = (), end='\033[0m', **kwargs):
221221
logger = get_logger('log21.input', level=DEBUG, show_time=False, show_level=False)
222-
logger.input(*msg, args=args, end=end, **kwargs)
222+
return logger.input(*msg, args=args, end=end, **kwargs)
223223

224224

225225
def pprint(obj, indent=1, width=80, depth=None, signs_colors: _Dict[str, str] = None, *, compact=False, sort_dicts=True,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = file.read()
88

99
DESCRIPTION = 'A simple logging package that helps you log colorized messages in Windows console.'
10-
VERSION = '2.1.4'
10+
VERSION = '2.1.5'
1111

1212
setup(
1313
name='log21',

0 commit comments

Comments
 (0)