From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-catalyst+bounces-2779-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 2A1AF1381F3
	for <garchives@archives.gentoo.org>; Sun, 13 Oct 2013 09:07:46 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 448F8E098A;
	Sun, 13 Oct 2013 09:07:43 +0000 (UTC)
Received: from mail-pd0-f175.google.com (mail-pd0-f175.google.com [209.85.192.175])
	(using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id B36C3E098A
	for <gentoo-catalyst@lists.gentoo.org>; Sun, 13 Oct 2013 09:07:42 +0000 (UTC)
Received: by mail-pd0-f175.google.com with SMTP id q10so6162074pdj.34
        for <gentoo-catalyst@lists.gentoo.org>; Sun, 13 Oct 2013 02:07:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=from:to:cc:subject:date:message-id:in-reply-to:references;
        bh=ZzT3culMYcgat/CuaGO+kc5YHMXN3Bx/JMMBgkvl0LU=;
        b=jUBpaS9mX8E4OLvKKGSmIriiGdptqsvJP8rTHHbOVsBkqLSvCC/XfdCp0CNwP/iEOC
         RVfRLZANabBg2UWsZU7fMvEXO2Gx+O1nYysynGfuzdFcswE6aW0V2WbqCgH2hKA8e+kN
         DxDFhCXaugueSpLf7MBkk4YewgOkfF2nSOMg6BeJh6F18I9gG2mG3q3mMww2iUlbmUaW
         dPAxZzHYlWHhM80osNyhjN/cGfPDWsAkVKheDlrW2aka4SmyaP28x2bH62LlxUynGb2E
         gRCJzRRTMTyCAIrXlSsyBb9kjOT0dRbhOn9nyP0bcugZEQi/jqPkET4mixW0bRgBhwOY
         0i5Q==
X-Received: by 10.68.216.132 with SMTP id oq4mr4893447pbc.50.1381655261638;
        Sun, 13 Oct 2013 02:07:41 -0700 (PDT)
Received: from moiraine.shinigami ([50.126.105.238])
        by mx.google.com with ESMTPSA id kd1sm82991001pab.20.1969.12.31.16.00.00
        (version=TLSv1.2 cipher=RC4-SHA bits=128/128);
        Sun, 13 Oct 2013 02:07:41 -0700 (PDT)
From: Dylan Baker <baker.dylan.c@gmail.com>
To: gentoo-catalyst@lists.gentoo.org
Cc: Dylan Baker <baker.dylan.c@gmail.com>
Subject: [gentoo-catalyst] [Patch v2 3/4] catalyst: split combined import
Date: Sun, 13 Oct 2013 02:07:37 -0700
Message-Id: <1381655258-6084-3-git-send-email-baker.dylan.c@gmail.com>
X-Mailer: git-send-email 1.8.1.5
In-Reply-To: <1381655258-6084-1-git-send-email-baker.dylan.c@gmail.com>
References: <1381655258-6084-1-git-send-email-baker.dylan.c@gmail.com>
Precedence: bulk
List-Post: <mailto:gentoo-catalyst@lists.gentoo.org>
List-Help: <mailto:gentoo-catalyst+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-catalyst+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-catalyst+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-catalyst.gentoo.org>
X-BeenThere: gentoo-catalyst@lists.gentoo.org
Reply-to: gentoo-catalyst@lists.gentoo.org
X-Archives-Salt: c520fda2-489c-45b0-9554-be1fc53a7228
X-Archives-Hash: f1f96e9f5e568d3ac0c18fee3e07f398

Combining multiple modules into a single import is discouraged in
python's PEP8 style guide:

"""
Imports should usually be on separate lines, e.g.:

Yes: import os
     import sys

     No:  import sys, os
"""
---
 catalyst | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/catalyst b/catalyst
index 2378a87..36bd709 100755
--- a/catalyst
+++ b/catalyst
@@ -7,7 +7,11 @@
 # Chris Gianelloni <wolf31o2@wolf31o2.org>
 # $Id$
 
-import os, sys, imp, string, getopt
+import os
+import sys
+import imp
+import string
+import getopt
 import pdb
 import os.path
 
-- 
1.8.1.5