Skip to content

Commit 193f8d6

Browse files
Bug fixes.
1 parent 92e64f0 commit 193f8d6

6 files changed

Lines changed: 6 additions & 6 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-5
9+
### 2.1.4-6
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.5
53+
### 2.1.6
5454

5555
Bug fixes.
5656

log21/Logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def print(self, *msg, args: tuple = (), end='\033[0m\n', **kwargs):
140140
msg = ' '.join([str(m) for m in msg]) + end
141141
self._log(self.level if self.level >= NOTSET else NOTSET, msg, args, **kwargs)
142142

143-
def input(self, *msg, args: tuple = (), end='\033[0m', **kwargs):
143+
def input(self, *msg, args: tuple = (), end='', **kwargs):
144144
"""
145145
Log 'msg % args'.
146146

log21/LoggingWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def clear(self):
291291
self.logs.delete('1.0', _tkinter.END)
292292
self.logs.config(state=_tkinter.DISABLED)
293293

294-
def input(self, *msg, args: tuple = (), end='\033[0m', **kwargs) -> str:
294+
def input(self, *msg, args: tuple = (), end='', **kwargs) -> str:
295295
"""
296296
Prints a message and waits for input.
297297

log21/__init__.py

Lines changed: 1 addition & 1 deletion
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.5"
22+
__version__ = "2.1.6"
2323
__author__ = "CodeWriter21 (Mehrad Pooryoussof)"
2424
__github__ = "Https://GitHub.com/MPCodeWriter21/log21"
2525
__all__ = ['ColorizingStreamHandler', 'DecolorizingFileHandler', 'ColorizingFormatter', 'DecolorizingFormatter',

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.5'
10+
VERSION = '2.1.6'
1111

1212
setup(
1313
name='log21',

0 commit comments

Comments
 (0)