From 9bac51669faa98711afc601788ef0354205863b1 Mon Sep 17 00:00:00 2001 From: James Troup Date: Wed, 6 Feb 2008 21:58:54 +0000 Subject: [PATCH] [AJ, r=JT] fix slice for raw- check --- dak/process_unchecked.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index e4f055de..4a4cfd6b 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -405,7 +405,7 @@ def check_files(): files[file]["type"] = "unreadable" continue # If it's byhand skip remaining checks - if files[file]["section"] == "byhand" or files[file]["section"][4:] == "raw-": + if files[file]["section"] == "byhand" or files[file]["section"][:4] == "raw-": files[file]["byhand"] = 1 files[file]["type"] = "byhand" # Checks for a binary package... -- 2.39.2