##// 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 776 endsess = rmatch.group("endsess") or startsess
777 777 startsess = int(startsess.replace("~","-"))
778 778 endsess = int(endsess.replace("~","-"))
779 assert endsess >= startsess, ("start session must be older than end "
780 "session")
779 assert endsess >= startsess, "start session must be earlier than end session"
781 780
782 781 if endsess == startsess:
783 782 yield (startsess, start, end)
General Comments 0
You need to be logged in to leave comments. Login now