Skip to content

Commit

Permalink
#435 PMM_WIDTH fix
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 committed Nov 17, 2021
1 parent 6ca4cce commit aae1ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plex_meta_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_arg(env_str, default, arg_bool=False, arg_int=False):
resume = get_arg("PMM_RESUME", args.resume)
times = get_arg("PMM_TIME", args.times)
divider = get_arg("PMM_DIVIDER", args.divider)
screen_width = get_arg("PMM_WIDTH", args.width)
screen_width = get_arg("PMM_WIDTH", args.width, arg_int=True)
config_file = get_arg("PMM_CONFIG", args.config)
stats = {}

Expand Down

0 comments on commit aae1ae2

Please sign in to comment.