# HG changeset patch # User paulb # Date 1086534857 0 # Node ID 9884075a32c4bb1d3de21430c6e2d476975f3642 # Parent 77ce6cfd83f209f006c824b5e463eb2317059288 [project @ 2004-06-06 15:14:17 by paulb] Fixed the path interpretation. diff -r 77ce6cfd83f2 -r 9884075a32c4 examples/Common/Calendar/__init__.py --- a/examples/Common/Calendar/__init__.py Sun Jun 06 15:14:09 2004 +0000 +++ b/examples/Common/Calendar/__init__.py Sun Jun 06 15:14:17 2004 +0000 @@ -23,7 +23,7 @@ # Get the last path component as the name of the calendar. # NOTE: This could be improved to permit hierarchical naming. - calendar_name = trans.get_path().split("/")[-1] + calendar_name = trans.get_path_without_query().split("/")[-1] # Determine the action to be taken.