From 089f2b82e7bd596a393afa8065571267d1a49cc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 5 Feb 2010 11:49:57 +0100 Subject: [PATCH] do not complain about _service files --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index 8f179044..2bac92dc 100644 --- a/osc/core.py +++ b/osc/core.py @@ -4479,7 +4479,7 @@ def check_filelist_before_commit(pacs): p.todo = p.filenamelist + p.filenamelist_unvers p.todo.sort() for f in (f for f in p.todo if not os.path.isdir(f)): - if p.status(f) in ('?', '!'): + if not f.startswith('_service:') and not f.startswith('_service_') and p.status(f) in ('?', '!'): resp = raw_input("File `%s' is not in package meta. Would you like skip/remove/edit file lists/commit/abort? (s/r/e/c/A) "% (f, )) if resp in ('s', 'S'): continue