Author: justi9
Date: 2008-02-21 16:24:33 -0500 (Thu, 21 Feb 2008)
New Revision: 1721
Modified:
mgmt/cumin/python/wooly/__init__.py
Log:
Tolerate page paths that start with '/'
Modified: mgmt/cumin/python/wooly/__init__.py
===================================================================
--- mgmt/cumin/python/wooly/__init__.py 2008-02-21 21:23:31 UTC (rev 1720)
+++ mgmt/cumin/python/wooly/__init__.py 2008-02-21 21:24:33 UTC (rev 1721)
@@ -630,7 +630,7 @@
def unmarshal(self, string):
if string.startswith("/"):
- raise Exception("Illegal session string '" + string +
"'")
+ string = string[1:]
elems = string.split("?")
Show replies by date