Browse Source

Remove references to "refreshd".

Ask Solem 16 years ago
parent
commit
1dc879a8d6
2 changed files with 2 additions and 2 deletions
  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)