From 0292bd8cd4a61ef329ad20c0cb090b20b930f41e Mon Sep 17 00:00:00 2001
From: "Antoine R. Dumont (@ardumont)" <antoine.romain.dumont@gmail.com>
Date: Tue, 17 Jul 2018 11:40:21 +0200
Subject: [PATCH] core/lister: Rename module paging_lister to
 page_by_page_lister

---
 swh/lister/core/{paging_lister.py => page_by_page_lister.py} | 0
 swh/lister/core/tests/test_lister.py                         | 2 +-
 swh/lister/gitlab/lister.py                                  | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename swh/lister/core/{paging_lister.py => page_by_page_lister.py} (100%)

diff --git a/swh/lister/core/paging_lister.py b/swh/lister/core/page_by_page_lister.py
similarity index 100%
rename from swh/lister/core/paging_lister.py
rename to swh/lister/core/page_by_page_lister.py
diff --git a/swh/lister/core/tests/test_lister.py b/swh/lister/core/tests/test_lister.py
index 17c71bfc..d20ecd01 100644
--- a/swh/lister/core/tests/test_lister.py
+++ b/swh/lister/core/tests/test_lister.py
@@ -24,7 +24,7 @@ class HttpListerTesterBase(abc.ABC):
     """Base testing class for subclasses of
 
            swh.lister.core.indexing_lister.SWHIndexingHttpLister.
-           swh.lister.core.paging_lister.PageByPageHttpLister
+           swh.lister.core.page_by_page_lister.PageByPageHttpLister
 
     See swh.lister.github.tests.test_gh_lister for an example of how
     to customize for a specific listing service.
diff --git a/swh/lister/gitlab/lister.py b/swh/lister/gitlab/lister.py
index b8f20b05..5ac80b87 100644
--- a/swh/lister/gitlab/lister.py
+++ b/swh/lister/gitlab/lister.py
@@ -6,7 +6,7 @@ import random
 import time
 
 from .. import utils
-from ..core.paging_lister import PageByPageHttpLister
+from ..core.page_by_page_lister import PageByPageHttpLister
 from .models import GitLabModel
 
 
-- 
GitLab