diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-01 11:17:29 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-01 11:24:09 +0300 |
commit | 0352e233955bc5d04344a4ae3ef04436d8299ae1 (patch) | |
tree | 7b99b9bbf7b6390cbea22966ba257dfd09f1fea9 /.travis | |
parent | Travis: lint the config (diff) | |
download | cgitize-0352e233955bc5d04344a4ae3ef04436d8299ae1.tar.gz cgitize-0352e233955bc5d04344a4ae3ef04436d8299ae1.zip |
rename the modules
Diffstat (limited to '')
-rw-r--r-- | .travis/docker/client/etc/my_repos.py | 2 | ||||
-rwxr-xr-x | .travis/local/test.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis/docker/client/etc/my_repos.py b/.travis/docker/client/etc/my_repos.py index 2e1bc8b..9d90f21 100644 --- a/.travis/docker/client/etc/my_repos.py +++ b/.travis/docker/client/etc/my_repos.py @@ -1,4 +1,4 @@ -from pull.repo import Repo +from cgit.repos.repo import Repo MY_REPOS = ( diff --git a/.travis/local/test.sh b/.travis/local/test.sh index 5cc1fdd..2045e1e 100755 --- a/.travis/local/test.sh +++ b/.travis/local/test.sh @@ -56,7 +56,7 @@ setup_my_repos_py() { mkdir -p -- "$conf_dir" cat <<EOF | tee "$my_repos_path" -from pull.repo import Repo +from cgit.repos.repo import Repo MY_REPOS = ( @@ -81,7 +81,7 @@ run() { echo Pulling repository from upstream echo ---------------------------------------------------------------------- - python3 -m pull.main --config "$cgit_repos_conf_path" + python3 -m cgit.repos.main --config "$cgit_repos_conf_path" } verify() { |