fix some eventlist handling errors

svn: r4442
This commit is contained in:
Don Allingham
2005-04-28 22:21:20 +00:00
parent de0ab260d4
commit 7a6dc34425
6 changed files with 36 additions and 43 deletions

View File

@@ -211,9 +211,8 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback):
pass
def create_id(self):
return "%08x%08x%08x" % ( int(time.time()*10000),
self.rand.randint(0,maxint),
self.rand.randint(0,maxint))
return "%08x%08x" % ( int(time.time()*10000),
self.rand.randint(0,maxint))
def get_person_cursor(self):
assert False, "Needs to be overridden in the derived class"