# HG changeset patch # User paulb # Date 1085931041 0 # Node ID 5b06d4b70f38f4d23de1674d413069ffe817d6fe # Parent 7efcf60baf0a492a2ad7af6a8d42f8966ef41691 [project @ 2004-05-30 15:30:41 by paulb] Fixed get_path to include the query string. diff -r 7efcf60baf0a -r 5b06d4b70f38 WebStack/ModPython.py --- a/WebStack/ModPython.py Sun May 30 14:40:18 2004 +0000 +++ b/WebStack/ModPython.py Sun May 30 15:30:41 2004 +0000 @@ -103,7 +103,11 @@ A framework-specific method which gets the entire path from the request. """ - return self.trans.uri + query_string = self.get_query_string() + if query_string: + return self.trans.uri + "?" + query_string + else: + return self.trans.uri def get_path_info(self):