From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E43C113888F for ; Tue, 6 Oct 2015 04:12:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B34BBE0857; Tue, 6 Oct 2015 04:12:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54384E0857 for ; Tue, 6 Oct 2015 04:12:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 364813408AC for ; Tue, 6 Oct 2015 04:12:06 +0000 (UTC) From: Mike Frysinger To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH] lint: fix mixed indentation to only use tabs Date: Tue, 6 Oct 2015 00:12:04 -0400 Message-Id: <1444104724-16584-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 2.5.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: c7b9193d-cf67-4a38-9eb9-ec431437c980 X-Archives-Hash: 32f03410dd5e69a160b4b5ab62d7bed9 --- catalyst/base/stagebase.py | 4 ++-- catalyst/targets/netboot2.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 432ad5c..a9e7848 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -24,9 +24,9 @@ from catalyst.fileops import ensure_dirs, pjoin from catalyst.base.resume import AutoResume if sys.version_info[0] >= 3: - py_input = input + py_input = input else: - py_input = raw_input + py_input = raw_input class StageBase(TargetBase, ClearBase, GenBase): diff --git a/catalyst/targets/netboot2.py b/catalyst/targets/netboot2.py index 5de1a74..e509cf9 100644 --- a/catalyst/targets/netboot2.py +++ b/catalyst/targets/netboot2.py @@ -80,10 +80,10 @@ class netboot2(StageBase): for x in loopy: if "netboot2/packages/"+x+"/files" in self.settings: - if type(self.settings["netboot2/packages/"+x+"/files"]) == types.ListType: - myfiles.extend(self.settings["netboot2/packages/"+x+"/files"]) - else: - myfiles.append(self.settings["netboot2/packages/"+x+"/files"]) + if type(self.settings["netboot2/packages/"+x+"/files"]) == types.ListType: + myfiles.extend(self.settings["netboot2/packages/"+x+"/files"]) + else: + myfiles.append(self.settings["netboot2/packages/"+x+"/files"]) if "netboot2/extra_files" in self.settings: if type(self.settings["netboot2/extra_files"]) == types.ListType: -- 2.5.2