From: Ansgar Burchardt Date: Sun, 22 May 2016 14:04:03 +0000 (+0200) Subject: Correct indention. X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=b2ef968cbee895b404d01b1d7a2e5ac869bd8e39 Correct indention. --- diff --git a/scripts/debian/dep11-basic-validate.py b/scripts/debian/dep11-basic-validate.py index 03cd80c0..e6217b04 100755 --- a/scripts/debian/dep11-basic-validate.py +++ b/scripts/debian/dep11-basic-validate.py @@ -169,9 +169,9 @@ def validate_dir(dirname): ret = True for root, subfolders, files in os.walk(dirname): for fname in files: - if fname.endswith(".yml.gz") or fname.endswith(".yml.xz"): - if not validate_file(os.path.join(root, fname)): - ret = False + if fname.endswith(".yml.gz") or fname.endswith(".yml.xz"): + if not validate_file(os.path.join(root, fname)): + ret = False return ret