##// END OF EJS Templates
allow empty values for url so we can have /?tip
Benoit Boissinot -
r1407:db571bca default
parent child Browse files
Show More
@@ -67,7 +67,7 b' class hgrequest:'
67 self.inp = inp or sys.stdin
67 self.inp = inp or sys.stdin
68 self.out = out or sys.stdout
68 self.out = out or sys.stdout
69 self.env = env or os.environ
69 self.env = env or os.environ
70 self.form = cgi.parse(self.inp, self.env)
70 self.form = cgi.parse(self.inp, self.env, keep_blank_values=1)
71
71
72 def write(self, *things):
72 def write(self, *things):
73 for thing in things:
73 for thing in things:
General Comments 0
You need to be logged in to leave comments. Login now