From fd6b59cf3867853d0237e2513d9068429260060d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Adrian=20Schr=C3=B6ter?= Date: Mon, 19 Jul 2010 18:03:18 +0200 Subject: [PATCH] do not source validate special packages which start with an underscore --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index 21fc95c..2324a16 100644 --- a/osc/core.py +++ b/osc/core.py @@ -912,7 +912,7 @@ class Package: pathn = getTransActPath(self.dir) - if validators: + if validators and not self.name.startswith('_'): import subprocess import stat for validator in sorted(os.listdir(validators)): -- 2.1.4