aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgit
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-27 22:09:05 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-29 00:45:48 +0300
commit96ccf79d46adb2d6b49c67e3e6ad59512d67da65 (patch)
tree30d924907a180c465799d7c575b0b833f51a676c /cgit
parentdedupe the code a bit (diff)
downloadcgitize-96ccf79d46adb2d6b49c67e3e6ad59512d67da65.tar.gz
cgitize-96ccf79d46adb2d6b49c67e3e6ad59512d67da65.zip
rename the project to "cgitize"
Diffstat (limited to '')
-rw-r--r--cgit/repos/__init__.py0
-rw-r--r--cgitize/__init__.py (renamed from cgit/__init__.py)0
-rw-r--r--cgitize/cgit.py (renamed from cgit/repos/cgit.py)2
-rw-r--r--cgitize/main.py (renamed from cgit/repos/main.py)6
-rw-r--r--cgitize/repo.py (renamed from cgit/repos/repo.py)0
-rw-r--r--cgitize/utils.py (renamed from cgit/repos/utils.py)0
6 files changed, 4 insertions, 4 deletions
diff --git a/cgit/repos/__init__.py b/cgit/repos/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/cgit/repos/__init__.py
+++ /dev/null
diff --git a/cgit/__init__.py b/cgitize/__init__.py
index e69de29..e69de29 100644
--- a/cgit/__init__.py
+++ b/cgitize/__init__.py
diff --git a/cgit/repos/cgit.py b/cgitize/cgit.py
index 0f8917a..778b1c9 100644
--- a/cgit/repos/cgit.py
+++ b/cgitize/cgit.py
@@ -9,7 +9,7 @@ import os
import os.path
import shutil
-import cgit.repos.utils as utils
+import cgitize.utils as utils
GIT_ENV = os.environ.copy()
diff --git a/cgit/repos/main.py b/cgitize/main.py
index e5e390f..650c079 100644
--- a/cgit/repos/main.py
+++ b/cgitize/main.py
@@ -11,9 +11,9 @@ import logging
import os.path
import sys
-from cgit.repos.cgit import CGit, Output
-from cgit.repos.repo import BitbucketRepo, GithubRepo, Repo
-import cgit.repos.utils as utils
+from cgitize.cgit import CGit, Output
+from cgitize.repo import BitbucketRepo, GithubRepo, Repo
+import cgitize.utils as utils
DEFAULT_OUTPUT_DIR = '/var/tmp/cgit-repos/output'
diff --git a/cgit/repos/repo.py b/cgitize/repo.py
index 4b3072c..4b3072c 100644
--- a/cgit/repos/repo.py
+++ b/cgitize/repo.py
diff --git a/cgit/repos/utils.py b/cgitize/utils.py
index 84337e8..84337e8 100644
--- a/cgit/repos/utils.py
+++ b/cgitize/utils.py