From 0fd05e370e39dda1bd486957be5bb3e06087fc65 Mon Sep 17 00:00:00 2001 From: angie Date: Fri, 28 Jul 2023 14:05:42 -0400 Subject: [PATCH] Fix typo --- pyproject.toml | 2 +- src/mapfile_parser/__init__.py | 2 +- src/mapfile_parser/utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5d162b2..c1ffa0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "mapfile_parser" -version = "1.2.0" +version = "1.2.1" description = "Map file parser library focusing decompilation projects" readme = "README.md" requires-python = ">=3.7" diff --git a/src/mapfile_parser/__init__.py b/src/mapfile_parser/__init__.py index 497f7c2..5d8423a 100644 --- a/src/mapfile_parser/__init__.py +++ b/src/mapfile_parser/__init__.py @@ -5,7 +5,7 @@ from __future__ import annotations -__version_info__ = (1, 2, 0) +__version_info__ = (1, 2, 1) __version__ = ".".join(map(str, __version_info__)) __author__ = "Decompollaborate" diff --git a/src/mapfile_parser/utils.py b/src/mapfile_parser/utils.py index 1785b18..3201f41 100644 --- a/src/mapfile_parser/utils.py +++ b/src/mapfile_parser/utils.py @@ -29,7 +29,7 @@ def readFileAsBytearray(filepath: Path) -> bytearray: def hexbytes(bs: bytes, addColons: bool=True) -> str: glue = "" if addColons: - glue = "" + glue = ":" return glue.join("{:02X}".format(c) for c in bs) def getGitCommitTimestamp() -> int: