Skip to content

Commit c6d91ec

Browse files
committed
Fix readlinks import and rename inotify read links db
1 parent fdf5e3b commit c6d91ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

devel/management/commands/readlinks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def handle(self, filename=None, **options):
4040
elif v >= 2:
4141
logger.level = logging.DEBUG
4242

43-
return read_linksdb(filename)
43+
return read_links(filename)
4444

4545

4646
def get_pkginfo(pkgnamever):
@@ -52,7 +52,7 @@ def get_pkginfo(pkgnamever):
5252
return pkgname, epoch, pkgver, pkgrel
5353

5454

55-
def read_linksdb(repopath):
55+
def read_links(repopath):
5656
logger.info("Starting linksdb parsing")
5757
if not os.path.exists(repopath):
5858
logger.error("Could not read file %s", repopath)
File renamed without changes.

0 commit comments

Comments
 (0)