From 42497533a520b3a53cc4d5f82673ce35004c5f91 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Wed, 9 Oct 2013 10:11:34 +0100 Subject: [PATCH] Revert "Don't stop if srclib paths are hard-coded" This reverts commit 33a95637c029e3ac8bb6cfee6bbe273fcf818a33. --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 3e56dd10..2d107d87 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -37,7 +37,7 @@ def getvcs(vcstype, remote, local, sdk_path): return vcs_bzr(remote, local, sdk_path) if vcstype == 'srclib': if local != 'build/srclib/' + remote: - print "Warning: srclib paths are hard-coded!" + raise VCSException("Error: srclib paths are hard-coded!") return getsrclib(remote, 'build/srclib', sdk_path, raw=True) raise VCSException("Invalid vcs type " + vcstype)