Explorar el Código

Fix python server to handle old plugin requests without x-url

Chouser hace 14 años
padre
commit
eea6cbe45e
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      pycl.py

+ 4 - 1
pycl.py

@@ -52,7 +52,10 @@ class Handler(BaseHTTPRequestHandler):
             # write text into file
             url = self.headers.getheader('x-url')
             print "url:", url
-            prefix = "chrome_" + re.sub("[^.\w]", "_", re.sub("^.*?//","",url))
+            prefix = "chrome_"
+            if url:
+                prefix += re.sub("[^.\w]", "_", re.sub("^.*?//","",url))
+            prefix += "_"
             if temp_has_delete==True:
                 f = tempfile.NamedTemporaryFile(
                         delete=False, prefix=prefix, suffix='.txt')