Skip to content

Commit d94becc

Browse files
committed
Release v0.1.1
1 parent bcc1ed8 commit d94becc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespaces = true
1515

1616
# ----------------------------------------- Project Metadata -------------------------------------
1717
[project]
18-
version = "0.1.0"
18+
version = "0.1.1"
1919
name = "PyCacheMan"
2020
requires-python = ">=3.10"
2121
dependencies = [

pkg/src/pycacheman/serializable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def get(self, typ: str, key: str):
9898
if timestamp and self._is_expired(typ, timestamp):
9999
logger.info(
100100
log_title,
101-
f"Item expired.\n- Timestamp: {timestamp}\n- Retention Hours: {self._retention_hours}",
101+
f"Item expired.\n- Timestamp: {timestamp}\n- Retention Time: {self._retention_time[typ]}",
102102
)
103103
return None
104104
logger.info(

0 commit comments

Comments
 (0)