소스 검색

Merge pull request #2120 from flyingfoxlee/patch-1

Fix typo.
Ask Solem Hoel 10 년 전
부모
커밋
645fa75bdb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/tutorials/task-cookbook.rst

+ 1 - 1
docs/tutorials/task-cookbook.rst

@@ -43,7 +43,7 @@ The cache key expires after some time in case something unexpected happens
         # The cache key consists of the task name and the MD5 digest
         # The cache key consists of the task name and the MD5 digest
         # of the feed URL.
         # of the feed URL.
         feed_url_digest = md5(feed_url).hexdigest()
         feed_url_digest = md5(feed_url).hexdigest()
-        lock_id = '{0}-lock-{1}'.format(self.name, feed_url_hexdigest)
+        lock_id = '{0}-lock-{1}'.format(__name__, feed_url_hexdigest)
 
 
         # cache.add fails if the key already exists
         # cache.add fails if the key already exists
         acquire_lock = lambda: cache.add(lock_id, 'true', LOCK_EXPIRE)
         acquire_lock = lambda: cache.add(lock_id, 'true', LOCK_EXPIRE)