Browse Source

Fixed typo

Alois Mahdal 10 years ago
parent
commit
99177ff35b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/htlogr.py

+ 1
- 1
lib/htlogr.py View File

@@ -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"