commit: 5c93c16d1df9ab1512ec4444aa994f97c44c831d Author: Mike Frysinger <vapier <AT> gentoo <DOT> org> AuthorDate: Tue Oct 6 19:49:29 2015 +0000 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> 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__))
