# HG changeset patch # User Waqas Hussain # Date 1354510866 -18000 # Node ID 61c47d26481d3284bf6f250083c031427b912011 # Parent 98b71d519fffa8e3897484ba91c0be072a7939d9 net.http.parser: Fix syntax error introduced in c5edb08fc7cb. diff -r 98b71d519fff -r 61c47d26481d net/http/parser.lua --- a/net/http/parser.lua Mon Dec 03 05:50:39 2012 +0500 +++ b/net/http/parser.lua Mon Dec 03 10:01:06 2012 +0500 @@ -5,7 +5,7 @@ local urldecode = require "net.http".urldecode; local function preprocess_path(path) - path = urldecode((path:gsub("//+". "/"))); + path = urldecode((path:gsub("//+", "/"))); if path:sub(1,1) ~= "/" then path = "/"..path; end