aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/layout.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/layout.py')
-rw-r--r--MgaRepo/layout.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/MgaRepo/layout.py b/MgaRepo/layout.py
index 395e996..97f634d 100644
--- a/MgaRepo/layout.py
+++ b/MgaRepo/layout.py
@@ -5,7 +5,6 @@ import urllib.parse
from MgaRepo import Error, config
from MgaRepo.svn import SVN
-from MgaRepo.vcsutil import detectVCS
__all__ = ["package_url", "checkout_url", "repository_url", "get_url_revision"]
@@ -133,8 +132,7 @@ def repository_url(mirrored=False):
raise Error("you need to set the 'repository' " \
"configuration option on mgarepo.conf")
url = convert_default_parent(default_parent)
- vcs = detectVCS(url)
- return vcs.url
+ return url
def package_url(name_or_url, version=None, release=None, distro=None, backports=None,
mirrored=True, obsolete=None):