aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgit/repos
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cgit/repos/__init__.py0
-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