formatting

This commit is contained in:
Dave Schuyler 2006-01-09 23:05:04 +00:00
parent 1a31424198
commit c3f9f335fc
1 changed files with 2 additions and 2 deletions

View File

@ -96,14 +96,14 @@ class DistributedObject(DistributedObjectBase):
except Exception, e: print "%serror printing status"%(spaces,), e
def setNeverDisable(self, bool):
assert (bool == 1) or (bool == 0)
assert bool == 1 or bool == 0
self.neverDisable = bool
def getNeverDisable(self):
return self.neverDisable
def setCacheable(self, bool):
assert (bool == 1) or (bool == 0)
assert bool == 1 or bool == 0
self.cacheable = bool
def getCacheable(self):