From 57f7acc12470d4313c1b93168c48b36543866f6d Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 16 Nov 2016 21:52:07 -0800 Subject: [PATCH] pylink: fix last commit (args.no_check_pid) --- pylink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylink b/pylink index d347ff1..3a71ed7 100755 --- a/pylink +++ b/pylink @@ -38,7 +38,7 @@ if __name__ == '__main__': # Check for a pid file, unless told not to, # this stops instance overlap, which wrecks clientbots - if not args.no_checkpid: + if not args.no_check_pid: config = conf.confname if os.path.exists("%s.pid" % config): log.error("PID file exists; aborting! If PyLink didn't shut down cleanly last time it "