]> git.phdru.name Git - bookmarks_db.git/commitdiff
There could be more than one semicolon in Content-Type header.
authorOleg Broytman <phd@phdru.name>
Tue, 4 Mar 2008 10:40:14 +0000 (10:40 +0000)
committerOleg Broytman <phd@phdru.name>
Tue, 4 Mar 2008 10:40:14 +0000 (10:40 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@197 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

Robots/bkmk_rsimple.py

index 32083ee95b254e264f367b5becb18a8f26d91d78..ebb3f8b2b895f26576174f10c16115d10cabb72d 100644 (file)
@@ -157,7 +157,7 @@ class robot_simple(Robot):
             try:
                content_type = headers["Content-Type"]
                try:
-                  content_type, charset = content_type.split(';')
+                  content_type, charset = content_type.split(';', 1)
                   content_type = content_type.strip()
                   charset = charset.split('=')[1].strip()
                   self.log("   HTTP charset   : %s" % charset)