Skip to content

Commit 30024e5

Browse files
committed
Made setup.py work without yaml by changing version import.
1 parent adc3beb commit 30024e5

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

simpledaemonlog/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""__init__.py: Module init."""
22

3-
from .logsetup import version
3+
version = "0.2.1"
44

55
__author__ = "Raido Pahtma"
66
__license__ = "MIT"

simpledaemonlog/logsetup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
__author__ = 'Raido Pahtma'
1515
__license__ = "MIT"
1616

17-
version = "0.2.0"
18-
1917
DEFAULT_FORMAT_STRING = '%(asctime)s|%(levelname)8s|%(module)20s|%(lineno)4s| %(message)s'
2018
COLORED_FORMAT_STRING = '%(log_color)s%(asctime)s%(reset)s|%(module)20s|%(lineno)4s| %(log_color)s%(message)s'
2119

0 commit comments

Comments
 (0)