Skip to content

Commit

Permalink
Update Webserver_game_server_log_reader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BoQsc committed Aug 9, 2024
1 parent 46b9b71 commit 7479f94
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def get_latest_game_server_log_file_path(log_directory = None):
def get_latest_game_server_log_file_path(log_directory = None) -> str:

from pathlib import Path;
DEFAULT_LOG_DIRECTORY = r"C:\Program Files (x86)\Steam\steamapps\common\7 Days To Die\7DaysToDie_Data"
Expand Down Expand Up @@ -30,7 +30,7 @@ def get_latest_game_server_log_file_path(log_directory = None):
# log_directory = os.path.abspath(__file__)
#
#
return log_directory
return str(log_directory)
#return {"game_server_log_file_path": log_directory}
pass

Expand Down

0 comments on commit 7479f94

Please sign in to comment.