fix parse error in memcachedqueuehandler

This commit is contained in:
Evan Prodromou 2009-04-23 05:23:59 -04:00
parent aee45ea91d
commit 2053bdabef
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class MemcachedQueueHandler extends QueueHandler
function handle_notice($notice)
{
// XXX: fork here
common_log(LOG_INFO, "Blowing memcached for $notice->id\n";
common_log(LOG_INFO, "Blowing memcached for $notice->id");
$notice->blowCaches();
return true;
}