##// END OF EJS Templates
joined two message lines to one
Joon Ro -
Show More
@@ -776,8 +776,7 b' def extract_hist_ranges(ranges_str):'
776 endsess = rmatch.group("endsess") or startsess
776 endsess = rmatch.group("endsess") or startsess
777 startsess = int(startsess.replace("~","-"))
777 startsess = int(startsess.replace("~","-"))
778 endsess = int(endsess.replace("~","-"))
778 endsess = int(endsess.replace("~","-"))
779 assert endsess >= startsess, ("start session must be older than end "
779 assert endsess >= startsess, "start session must be earlier than end session"
780 "session")
781
780
782 if endsess == startsess:
781 if endsess == startsess:
783 yield (startsess, start, end)
782 yield (startsess, start, end)
General Comments 0
You need to be logged in to leave comments. Login now