Browse Source

Fixes typo /dev/nulll -> /dev/null. Closes #386. Thanks to jbiggar

Ask Solem 14 years ago
parent
commit
f44a7c6e0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/platforms.py

+ 1 - 1
celery/platforms.py

@@ -14,7 +14,7 @@ grp = try_import("grp")
 
 
 DAEMON_UMASK = 0
 DAEMON_UMASK = 0
 DAEMON_WORKDIR = "/"
 DAEMON_WORKDIR = "/"
-DAEMON_REDIRECT_TO = getattr(os, "devnull", "/dev/nulll")
+DAEMON_REDIRECT_TO = getattr(os, "devnull", "/dev/null")
 
 
 
 
 class LockFailed(Exception):
 class LockFailed(Exception):