From 39c976412d184db422b7329e3fe74d546d08eea4 Mon Sep 17 00:00:00 2001 From: scarabeus Date: Wed, 17 Nov 2010 02:33:58 +0000 Subject: [PATCH] Use join() rather than string printing. svn path=/trunk/gentoolkit/; revision=854 --- pym/gentoolkit/eshowkw/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/gentoolkit/eshowkw/__init__.py b/pym/gentoolkit/eshowkw/__init__.py index cb957a3..b93b274 100644 --- a/pym/gentoolkit/eshowkw/__init__.py +++ b/pym/gentoolkit/eshowkw/__init__.py @@ -118,9 +118,9 @@ def main(argv, indirect = False): if len(ebuilds) <= 0: msg_err = 'No ebuilds at "%s"' % currdir raise SystemExit(msg_err) - package= '%s/%s' % (os.path.basename(os.path.abspath('../')), os.path.basename(currdir)) + package= '/'.join(os.path.basename(os.path.abspath('../')), os.path.basename(currdir)) ourtree = os.path.abspath('../../') - overlays = '%s %s' % (ports['PORTDIR_OVERLAY'], ourtree) + overlays = ' '.join(ports['PORTDIR_OVERLAY'], ourtree) mysettings = portc(env={'PORTDIR_OVERLAY': overlays}) dbapi = portdbapi(mysettings=mysettings) # specify that we want just our nice tree we are in cwd -- 2.26.2