Skip to content

Commit

Permalink
FixSyntaxError
Browse files Browse the repository at this point in the history
  • Loading branch information
YozoraXCII committed Jan 22, 2025
1 parent d894176 commit ca914b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kometa.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ def start(attrs):
logger.info(f" Platform: {platform.platform()}")
logger.info(f" Total Memory: {round(psutil.virtual_memory().total / (1024.0 ** 3))} GB")
logger.info(f" Available Memory: {round(psutil.virtual_memory().available / (1024.0 ** 3))} GB")
logger.info(f" Process Priority: {'low' if run_args["low-priority"] else 'normal'}")
logger.info(f" Process Priority: {'low' if run_args['low-priority'] else 'normal'}")

if not is_docker and not is_linuxserver:
try:
with open(os.path.abspath(os.path.join(os.path.dirname(__file__), "requirements.txt")), "r") as file:
Expand Down

0 comments on commit ca914b8

Please sign in to comment.