소스 검색

Remove references to "refreshd".

Ask Solem 16 년 전
부모
커밋
1dc879a8d6
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      crunchy/conf.py
  2. 1 1
      crunchy/platform.py

+ 1 - 1
crunchy/conf.py

@@ -21,7 +21,7 @@ DEFAULT_LOG_FMT = '[%(asctime)s: %(levelname)s/%(processName)s] %(message)s'
 DEFAULT_DAEMON_LOG_LEVEL = "INFO"
 
 # Default log file
-DEFAULT_DAEMON_LOG_FILE = "refreshd.log"
+DEFAULT_DAEMON_LOG_FILE = "crunchd.log"
 
 # Table of loglevels to constants for use in settings.py.
 LOG_LEVELS = {

+ 1 - 1
crunchy/platform.py

@@ -40,7 +40,7 @@ class PIDFile(object):
                    sys.stderr.write("Stale pidfile exists. removing it.\n")
                    self.remove()
             else:
-                raise SystemExit("refreshd is already running.")
+                raise SystemExit("crunchd is already running.")
 
     def remove(self):
         os.unlink(self.pidfile)