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 62D6E138BEF for ; Thu, 8 Oct 2015 17:19:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4412E0814; Thu, 8 Oct 2015 17:19:14 +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 43D01E0814 for ; Thu, 8 Oct 2015 17:19:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E381341688 for ; Thu, 8 Oct 2015 17:19:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CFD6C41 for ; Thu, 8 Oct 2015 17:19:08 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1444160969.5c93c16d1df9ab1512ec4444aa994f97c44c831d.vapier@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 5c93c16d1df9ab1512ec4444aa994f97c44c831d X-VCS-Branch: master Date: Thu, 8 Oct 2015 17:19:08 +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: 031fdac4-556e-41f6-bcec-5c8eeda6be13 X-Archives-Hash: e169816876a4bcc2a091f2381729790a commit: 5c93c16d1df9ab1512ec4444aa994f97c44c831d Author: Mike Frysinger gentoo org> AuthorDate: Tue Oct 6 19:49:29 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Oct 6 19:49:29 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5c93c16d main: drop pointless os.path import You can import os and then use os.path directly, so there's no need to import this thing. catalyst/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/catalyst/main.py b/catalyst/main.py index 2a25df4..ebec4d3 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -9,7 +9,6 @@ import argparse import os import sys -import os.path __selfpath__ = os.path.abspath(os.path.dirname(__file__))