Rename `.init()` method to `.init_hook()`

- because that's more descriptive of what it does.

darcs-hash:20090816025725-82ea9-fbdc4f6ef48b73259ffcd3761fda10409e512a6a.gz
This commit is contained in:
Richard Darst 2009-08-15 19:57:25 -07:00
parent e6016f984e
commit b62041a6d1
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ class Config(object):
self.M = M
self.writers = { }
if hasattr(self, "init"):
self.init()
if hasattr(self, "init_hook"):
self.init_hook()
if writeRawLog:
self.writers['.log.txt'] = writers.TextLog(self.M)
for extension, writer in self.writer_map.iteritems():