From e721bb5ab61af90656f183bcc0b6c47640a5fdd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Mon, 28 Feb 2011 10:05:06 +0100 Subject: [PATCH] - service disabledrun must store files without prefix to be able to submit them --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index ee0cb03c..71d4f911 100644 --- a/osc/core.py +++ b/osc/core.py @@ -339,7 +339,7 @@ class Serviceinfo: # updating _services. print " (your _services file may be corrupt now)" - if service['mode'] == "trylocal" or service['mode'] == "localonly" or callmode == "local": + if service['mode'] == "disabled" or service['mode'] == "trylocal" or service['mode'] == "localonly" or callmode == "local": for filename in os.listdir(temp_dir): shutil.move( os.path.join(temp_dir, filename), os.path.join(dir, filename) ) else: