Skip to content

Commit 0afe043

Browse files
mszeuMarco Simone Zuppone
andauthored
sys issue and PSF Logo (#21)
* missing sys import was causing problems in the exe version * added Supporting Python Logo Co-authored-by: Marco Simone Zuppone <m.zuppone@computer.org>
1 parent 50d1320 commit 0afe043

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Source License</b> for free with the full access to their developer suite.
66
<a href="https://www.jetbrains.com/pycharm/?from=PayshieldPPressureTesPyCharm">PyCharm</a> is an awesome Python IDE that
77
greatly simplified my work.
88

9-
&nbsp;
9+
<img src=images/supporting-member-badge.png width=100>
1010

1111
The **pressureTest.py** Python script creates a workload on the **Thales payShield 10k** and **9k** appliances.
1212
The script can be useful during demonstrations of the monitoring features of the appliance and can be used in every case

images/supporting-member-badge.png

164 KB
Loading

pressureTest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
from pathlib import Path
1313
from typing import Tuple, Dict
1414
from types import FunctionType
15+
from sys import exit # it prevents issues if the exit() function is invoked in the executable version
1516

16-
VERSION = "1.1.7.2"
17+
VERSION = "1.1.7.3"
1718

1819

1920
def decode_n0(response_to_decode: bytes, head_len: int):

0 commit comments

Comments
 (0)