From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qgkn2-0002LG-AZ for garchives@archives.gentoo.org; Tue, 12 Jul 2011 21:46:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DFC321C0C4; Tue, 12 Jul 2011 21:45:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E4DEE21C0C4 for ; Tue, 12 Jul 2011 21:45:25 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57F481B4084 for ; Tue, 12 Jul 2011 21:45:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 242D980042 for ; Tue, 12 Jul 2011 21:45:24 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/revdep_rebuild/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/revdep_rebuild/revdep-rebuild.py X-VCS-Directories: pym/gentoolkit/revdep_rebuild/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: cac7bd60abddb8420eeeeb5563490f9b8ee9b188 Date: Tue, 12 Jul 2011 21:45:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 588ba9ec1503c6494e54669ad3b8642f commit: cac7bd60abddb8420eeeeb5563490f9b8ee9b188 Author: brian.dolbec 5234894e-44cd-11de-9a4c-a7652= 6a193c6> AuthorDate: Fri Nov 5 05:26:11 2010 +0000 Commit: Paul Varner gentoo org> CommitDate: Tue Jul 12 21:29:00 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3Dcac7bd60 fix a missing leading space so that any args are not attached to the emer= ge command itself. git-svn-id: http://genscripts.googlecode.com/svn/trunk/gentoolkit@477 523= 4894e-44cd-11de-9a4c-a76526a193c6 --- pym/gentoolkit/revdep_rebuild/revdep-rebuild.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/gentoolkit/revdep_rebuild/revdep-rebuild.py b/pym/gentoo= lkit/revdep_rebuild/revdep-rebuild.py index 23298f9..544a86c 100755 --- a/pym/gentoolkit/revdep_rebuild/revdep-rebuild.py +++ b/pym/gentoolkit/revdep_rebuild/revdep-rebuild.py @@ -667,7 +667,7 @@ if __name__ =3D=3D "__main__": elif key in ('-i', '--ignore'): USE_TMP_FILES =3D False =20 - args =3D " ".join(args) + args =3D " " + " ".join(args) except getopt.GetoptError: print_v(1, red('Unrecognized option\n')) print_usage()