Skip to content

Commit

Permalink
Hotfitxes: for previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
BUZZARDGTA committed Apr 6, 2024
1 parent 4cbf1c6 commit 250f543
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions GTA_V_Session_Sniffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ def __exit__(self, e_type: type, e_value: Exception, e_traceback: TracebackType)
Threads_ExceptionHandler.raising_e_traceback = e_traceback

tb = e_traceback
if not isinstance(tb, TracebackType):
traceback.print_exception(e_type, e_value, e_traceback)
sys.exit(0)
while tb.tb_next:
tb = tb.tb_next
# Set the failed function name
Expand Down Expand Up @@ -1222,7 +1219,7 @@ def signal_handler(sig: int, frame: FrameType):
os.chdir(SCRIPT_DIR)

TITLE = "GTA V Session Sniffer"
VERSION = "v1.1.1 - 06/04/2024 (23:59)"
VERSION = "v1.1.1 - 07/04/2024 (00:13)"
TITLE_VERSION = f"{TITLE} {VERSION}"
SETTINGS_PATH = Path("Settings.ini")
HEADERS = {
Expand Down Expand Up @@ -1993,10 +1990,9 @@ def add_down_arrow_char_to_sorted_table_field(field_names: list[str], target_fie
print("\033[K" + f"Scanning IPs, refreshing display in {seconds_left} second{plural(seconds_left)} ...", end="\r")

time.sleep(sleep)
continue

refreshing_rate_t1 = refreshing_rate_t2
else:
break
break

def packet_callback(packet: Packet):
global tshark_restarted_times, global_pps_counter
Expand Down

0 comments on commit 250f543

Please sign in to comment.