From e0e33c329ff249d7862a0e7ec508794faa98efd8 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 5 Jan 2008 22:00:21 -0600 Subject: Remove hardcoded DBEXT value from script Signed-off-by: Dan McGee --- scripts/rankmirrors.py.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/rankmirrors.py.in') diff --git a/scripts/rankmirrors.py.in b/scripts/rankmirrors.py.in index 59b9c82c..99ec3fc7 100644 --- a/scripts/rankmirrors.py.in +++ b/scripts/rankmirrors.py.in @@ -155,17 +155,17 @@ if __name__ == "__main__": # if the $repo var is used in the url, replace it by core tempUrl = Template(serverUrl).safe_substitute(repo='core') - # add *.db.tar.gz to server name. the repo name is parsed + # add @DBEXT@ to server name. the repo name is parsed # from the mirror url; it is the third (or fourth) dir # from the end, where the url is http://foo/bar/REPO/os/arch try: splitted2 = tempUrl.split('/') if tempUrl[-1] != '/': repoName = splitted2[-3] - dbFileName = '/' + repoName + '.db.tar.gz' + dbFileName = '/' + repoName + '@DBEXT@' else: repoName = splitted2[-4] - dbFileName = repoName + '.db.tar.gz' + dbFileName = repoName + '@DBEXT@' except: dbFileName = '' -- cgit v1.2.3-54-g00ecf