Make test_mhlib run again.

There's some wierdness here, but the test ran before and not after,
so I'm just hacking the change out.  Someone more motivated than
me can work out what's really happening.

Raymond: *PLEASE* run the test suite before checking things like
this in!
This commit is contained in:
Michael W. Hudson 2002-06-02 16:12:06 +00:00
parent 9ea6c19747
commit 1ccccc08c2
1 changed files with 1 additions and 1 deletions

View File

@ -788,7 +788,7 @@ class IntSet:
self.pairs = []
self.sep = sep
self.rng = rng
if data is not None: self.fromstring(data)
if data: self.fromstring(data)
def reset(self):
self.pairs = []