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 /cgit/repos | |
parent | Travis: lint the config (diff) | |
download | cgitize-0352e233955bc5d04344a4ae3ef04436d8299ae1.tar.gz cgitize-0352e233955bc5d04344a4ae3ef04436d8299ae1.zip |
rename the modules
Diffstat (limited to '')
-rw-r--r-- | cgit/repos/__init__.py | 0 | ||||
-rw-r--r-- | cgit/repos/cgit.py (renamed from pull/cgit.py) | 2 | ||||
-rw-r--r-- | cgit/repos/main.py (renamed from pull/main.py) | 4 | ||||
-rw-r--r-- | cgit/repos/repo.py (renamed from pull/repo.py) | 0 | ||||
-rw-r--r-- | cgit/repos/utils.py (renamed from pull/utils.py) | 0 |
5 files changed, 3 insertions, 3 deletions
diff --git a/cgit/repos/__init__.py b/cgit/repos/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/cgit/repos/__init__.py diff --git a/pull/cgit.py b/cgit/repos/cgit.py index 86a94ea..bb010d3 100644 --- a/pull/cgit.py +++ b/cgit/repos/cgit.py @@ -9,7 +9,7 @@ import os import os.path import shutil -from pull.utils import chdir, check_output, run +from cgit.repos.utils import chdir, check_output, run _ENV = os.environ.copy() diff --git a/pull/main.py b/cgit/repos/main.py index 299b53c..8132208 100644 --- a/pull/main.py +++ b/cgit/repos/main.py @@ -10,8 +10,8 @@ import logging import os.path import sys -from pull.cgit import CGit, Output -from pull.repo import BitbucketRepo, GithubRepo, Repo +from cgit.repos.cgit import CGit, Output +from cgit.repos.repo import BitbucketRepo, GithubRepo, Repo DEFAULT_OUTPUT_DIR = '/var/tmp/cgit-repos/output' diff --git a/pull/repo.py b/cgit/repos/repo.py index a128dbf..a128dbf 100644 --- a/pull/repo.py +++ b/cgit/repos/repo.py diff --git a/pull/utils.py b/cgit/repos/utils.py index 84337e8..84337e8 100644 --- a/pull/utils.py +++ b/cgit/repos/utils.py |