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 B4BF81382CB for ; Sat, 26 Oct 2013 20:10:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51074E0B72; Sat, 26 Oct 2013 20:10:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1149E08E1 for ; Sat, 26 Oct 2013 20:10:37 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BAA3733F098 for ; Sat, 26 Oct 2013 20:10:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 70ADCE545E for ; Sat, 26 Oct 2013 20:10:35 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1382808171.a9765320f1d51e2eed037a892bfd7c9e3e8b533d.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: / X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst X-VCS-Directories: / X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a9765320f1d51e2eed037a892bfd7c9e3e8b533d X-VCS-Branch: master Date: Sat, 26 Oct 2013 20:10:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ae9b0b5e-972f-4196-ace2-335a8f1182d9 X-Archives-Hash: 9d3a6a431cdfb2e02bef3963daafeab4 commit: a9765320f1d51e2eed037a892bfd7c9e3e8b533d Author: Dylan Baker gmail com> AuthorDate: Sun Oct 13 09:07:37 2013 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 26 17:22:51 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=a9765320 catalyst: split combined import 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 """ Reviewed-by: Matt Turner gmail.com> --- 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 # $Id$ -import os, sys, imp, string, getopt +import os +import sys +import imp +import string +import getopt import pdb import os.path