From: Fred Drake Date: Fri, 6 Oct 2000 16:37:47 +0000 (+0000) Subject: Use the cvsinfo module instead of a module stuff off in my personal X-Git-Tag: v2.0c1~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=476491396ed0e5e5514bee185a1d84fb009bf36b;p=thirdparty%2FPython%2Fcpython.git Use the cvsinfo module instead of a module stuff off in my personal collection. --- diff --git a/Doc/tools/findacks b/Doc/tools/findacks index d35859bd50fa..b54ea609bda5 100755 --- a/Doc/tools/findacks +++ b/Doc/tools/findacks @@ -7,8 +7,7 @@ import re import sys import UserDict -import fdrake.cvstools.info -cvstools = fdrake.cvstools +import cvsinfo class Acknowledgements(UserDict.UserDict): @@ -53,7 +52,7 @@ def find_acks(f, acks): def load_cvs_log_acks(acks, args): - repolist = cvstools.info.get_repository_list(args or [""]) + repolist = cvsinfo.get_repository_list(args or [""]) for info, paths in repolist: print >>sys.stderr, "Repository:", info.get_cvsroot() f = open_cvs_log(info, paths)