Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Jul 28, 2023
1 parent 95c6849 commit 0fd05e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/mapfile_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/mapfile_parser/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0fd05e3

Please sign in to comment.