Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
bitlogik committed Jun 7, 2021
1 parent aafe572 commit 79a75d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion package/build_win_verinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,5 @@ def fill_version_info(file_name, version_str, file_desc, comment):
now_time_filetime(),
file_name,
)
print(versioninfo_new)
with open("package/version_info", "w", encoding="utf-8") as fverinfo:
fverinfo.write(versioninfo_new)
2 changes: 1 addition & 1 deletion piv_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def decode_do(data, start_index):
while len_len:
len_data *= 256
i += 1
len_data += data[i] # struct.unpack("B"*len_len, data[i+1:i+1+len_len])
len_data += data[i]
len_len -= 1
i += 1
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# PIVageant : setup data
# Copyright (C) 2021 BitLogiK


from setuptools import setup, find_packages
from pip._internal import main as pipmain
from _version import __version__


Expand Down

0 comments on commit 79a75d2

Please sign in to comment.