Skip to content

Commit

Permalink
alright, this outta fix it now
Browse files Browse the repository at this point in the history
  • Loading branch information
SandPoot committed Nov 30, 2022
1 parent b1d3e4e commit dcc2ffb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyinstaller install.py -F -i icon.ico
pyinstaller main.py -F -w -i icon.ico -n ss13rp
PyInstaller install.py -F -i icon.ico
PyInstaller main.py -F -w -i icon.ico -n ss13rp --hidden-import=pywintypes
Binary file modified dist/install.exe
Binary file not shown.
Binary file modified dist/ss13rp.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_server():
server = "ss13"
return servers[server]

def get_content(entry, else_value):
def get_content(entry, else_value = ""):
if entry in status and status[entry]:
return status[entry]
else:
Expand Down
2 changes: 1 addition & 1 deletion ss13rp.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ a = Analysis(
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hiddenimports=['pywintypes'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
Expand Down

0 comments on commit dcc2ffb

Please sign in to comment.