Browse Source

Use / operator to join paths

pull/20/head
Richard Neumann 2 years ago
parent
commit
816aec9408
  1. 2
      rcon/readline.py

2
rcon/readline.py

@ -12,7 +12,7 @@ except ModuleNotFoundError:
__all__ = ['CommandHistory']
HIST_FILE = Path.home().joinpath('.rconshell_history')
HIST_FILE = Path.home() / '.rconshell_history'
class CommandHistory:

Loading…
Cancel
Save