Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4764913

Browse files
committed
Use the cvsinfo module instead of a module stuff off in my personal
collection.
1 parent 72fbd82 commit 4764913

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Doc/tools/findacks

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import re
77
import sys
88
import UserDict
99

10-
import fdrake.cvstools.info
11-
cvstools = fdrake.cvstools
10+
import cvsinfo
1211

1312

1413
class Acknowledgements(UserDict.UserDict):
@@ -53,7 +52,7 @@ def find_acks(f, acks):
5352

5453

5554
def load_cvs_log_acks(acks, args):
56-
repolist = cvstools.info.get_repository_list(args or [""])
55+
repolist = cvsinfo.get_repository_list(args or [""])
5756
for info, paths in repolist:
5857
print >>sys.stderr, "Repository:", info.get_cvsroot()
5958
f = open_cvs_log(info, paths)

0 commit comments

Comments
 (0)