Skip to content

Commit 230934e

Browse files
author
root
committed
#46 modified UUID format
1 parent 73359af commit 230934e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

basescript/basescript.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _structlog_uniqueid_processor(self, logger_class, log_method, event):
8181
if 'id' not in event:
8282
event['id'] = '%s_%s' % (
8383
datetime.utcnow().strftime('%Y%m%dT%H%M%S'),
84-
uuid.uuid1()
84+
uuid.uuid1().hex
8585
)
8686
return event
8787

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_long_description():
2222

2323
long_description = get_long_description()
2424

25-
version = '0.1.13'
25+
version = '0.1.14'
2626
setup(
2727
name="basescript",
2828
version=version,

0 commit comments

Comments
 (0)