# HG changeset patch # User Paul Boddie # Date 1411486215 -7200 # Node ID 800c6b929859f4727c6551e8d68c74ef3ab5bfab # Parent 452111854bc2f7cb091cd079996053516e4951be Return tuples in free/busy lists for stable comparisons. diff -r 452111854bc2 -r 800c6b929859 imip_store.py --- a/imip_store.py Tue Sep 23 16:21:03 2014 +0200 +++ b/imip_store.py Tue Sep 23 17:30:15 2014 +0200 @@ -70,7 +70,7 @@ try: l = [] for line in f.readlines(): - l.append(line.strip().split("\t")) + l.append(tuple(line.strip().split("\t"))) return l finally: f.close()