소스 검색

Merge pull request #1517 from daftshady/master

fixed typo
Ask Solem Hoel 12 년 전
부모
커밋
923165db10
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      celery/five.py

+ 1 - 1
celery/five.py

@@ -127,7 +127,7 @@ else:
 def with_metaclass(Type, skip_attrs=set(['__dict__', '__weakref__'])):
     """Class decorator to set metaclass.
 
-    Works with both Python 3 and Python 3 and it does not add
+    Works with both Python 2 and Python 3 and it does not add
     an extra class in the lookup order like ``six.with_metaclass`` does
     (that is -- it copies the original class instead of using inheritance).