소스 검색

Typo of variable name

Dmytro Petruk 8 년 전
부모
커밋
bbb580b76e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/userguide/configuration.rst

+ 1 - 1
docs/userguide/configuration.rst

@@ -1739,7 +1739,7 @@ Example::
 
     # Random failover strategy
     def random_failover_strategy(servers):
-        it = list(it)  # don't modify callers list
+        it = list(servers)  # don't modify callers list
         shuffle = random.shuffle
         for _ in repeat(None):
             shuffle(it)