diff --git a/bin/cvsdbadmin b/bin/cvsdbadmin index f9b43364..91aa9fef 100755 --- a/bin/cvsdbadmin +++ b/bin/cvsdbadmin @@ -178,7 +178,8 @@ if __name__ == '__main__': db.PurgeRepository(root) if command in ('rebuild', 'update'): - repository = vclib.ccvs.CVSRepository(None, root, cfg.utilities, 0) + repository = vclib.ccvs.CVSRepository(None, root, None, + cfg.utilities, 0) RecurseUpdate(db, repository, path_parts, command == 'update', quiet_level) except KeyboardInterrupt: diff --git a/bin/loginfo-handler b/bin/loginfo-handler index d15e5063..94634242 100755 --- a/bin/loginfo-handler +++ b/bin/loginfo-handler @@ -223,7 +223,8 @@ def NextFile(s, pos = 0): def ProcessLoginfo(rootpath, directory, files): cfg = viewvc.load_config(CONF_PATHNAME) db = cvsdb.ConnectDatabase(cfg) - repository = vclib.ccvs.CVSRepository(None, rootpath, cfg.utilities, 0) + repository = vclib.ccvs.CVSRepository(None, rootpath, None, + cfg.utilities, 0) # split up the directory components dirpath = filter(None, string.split(os.path.normpath(directory), os.sep))