소스 검색

Fixed typo

Alois Mahdal 10 년 전
부모
커밋
99177ff35b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/htlogr.py

+ 1
- 1
lib/htlogr.py 파일 보기

@@ -63,7 +63,7 @@ class Htlogr:
63 63
         try:
64 64
             r = self.conn.getresponse()
65 65
             assert r.status == 200, ("logging server returned error %s,"
66
-                                     "message not logged" % r.status)
66
+                                     " message not logged" % r.status)
67 67
             return_msg = r.read()
68 68
         except httplib.BadStatusLine as e:
69 69
             return_msg = ("httplib does not like this line:\n\n    %s"