Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Typo (os.pat.join -> os.path.join).
  • Loading branch information
sraustein committed Dec 13, 2018
1 parent ccf638a commit 8f5c91b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rpki/rootd.py
Expand Up @@ -404,8 +404,9 @@ def __init__(self):
self.cfg.add_boolean_argument("--foreground", default = False,
help = "do not daemonize")
self.cfg.add_argument("--pidfile",
default = os.pat.join(rpki.daemonize.default_pid_directory,
"rootd.pid"),
default = os.path.join(
rpki.daemonize.default_pid_directory,
"rootd.pid"),
help = "override default location of pid file")
self.cfg.add_logging_arguments()
args = parser.parse_args()
Expand Down

0 comments on commit 8f5c91b

Please sign in to comment.