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 43ED71381F3 for ; Sat, 17 Nov 2012 00:11:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A047EE01C5; Sat, 17 Nov 2012 00:11:42 +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 20EC9E01C5 for ; Sat, 17 Nov 2012 00:11:42 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 394C233D8E2 for ; Sat, 17 Nov 2012 00:11:41 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id EA05220C65; Sat, 17 Nov 2012 00:11:39 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-projects commit in pax-utils: lddtree.py X-VCS-Repository: gentoo-projects X-VCS-Files: lddtree.py X-VCS-Directories: pax-utils X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121117001139.EA05220C65@flycatcher.gentoo.org> Date: Sat, 17 Nov 2012 00:11:39 +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: abd144e7-2ada-4215-81bf-4c2da6af9076 X-Archives-Hash: df6a149dd06c0ab723e543f8b1c76be0 vapier 12/11/17 00:11:39 Modified: lddtree.py Log: lddtree.py: fix indentation in previous commit Revision Changes Path 1.12 pax-utils/lddtree.py file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/lddtree.py?r1=1.11&r2=1.12 Index: lddtree.py =================================================================== RCS file: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- lddtree.py 16 Nov 2012 23:53:30 -0000 1.11 +++ lddtree.py 17 Nov 2012 00:11:39 -0000 1.12 @@ -2,7 +2,7 @@ # Copyright 2012 Gentoo Foundation # Copyright 2012 Mike Frysinger # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v 1.11 2012/11/16 23:53:30 vapier Exp $ +# $Header: /var/cvsroot/gentoo-projects/pax-utils/lddtree.py,v 1.12 2012/11/17 00:11:39 vapier Exp $ """Read the ELF dependency tree and show it @@ -230,8 +230,8 @@ }, } """ - if _first: - _all_libs = {} + if _first: + _all_libs = {} ret = { 'interp': None, 'path': path, @@ -309,7 +309,7 @@ def _ShowVersion(_option, _opt, _value, _parser): - id = '$Id: lddtree.py,v 1.11 2012/11/16 23:53:30 vapier Exp $'.split() + id = '$Id: lddtree.py,v 1.12 2012/11/17 00:11:39 vapier Exp $'.split() print('%s-%s %s %s' % (id[1].split('.')[0], id[2], id[3], id[4])) sys.exit(0)