## Script (Python) "getSessionString" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters= ##title= ## # $Id: getSessionString.py 1764 2007-05-10 04:41:04Z henrik $ """ return the Session string """ import DateTime now = DateTime.DateTime() if now.month() > 7: return "%s/%s" % (now.year(),now.year()+1) return "%s/%s" % (now.year()-1,now.year())