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 132B01381F3 for ; Wed, 16 Oct 2013 23:25:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9B40E087D; Wed, 16 Oct 2013 23:25:50 +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 73582E087D for ; Wed, 16 Oct 2013 23:25:50 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4219933EFCD for ; Wed, 16 Oct 2013 23:25:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E4D36E5308 for ; Wed, 16 Oct 2013 23:25:46 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1381965865.1afdc13a842d43acf4bc10649c18a0bbcdbd6073.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/movefile.py X-VCS-Directories: pym/portage/util/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 1afdc13a842d43acf4bc10649c18a0bbcdbd6073 X-VCS-Branch: master Date: Wed, 16 Oct 2013 23:25:46 +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: 5af5911a-54e4-4974-b4ab-4855330474c2 X-Archives-Hash: 49890d1352beda406abf5f918afde559 commit: 1afdc13a842d43acf4bc10649c18a0bbcdbd6073 Author: Brian Dolbec gentoo org> AuthorDate: Wed Oct 16 23:24:25 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Wed Oct 16 23:24:25 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=1afdc13a fix typo causing a "os" is not defined test error. --- pym/portage/util/movefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/util/movefile.py b/pym/portage/util/movefile.py index 4f158cd..452e77f 100644 --- a/pym/portage/util/movefile.py +++ b/pym/portage/util/movefile.py @@ -129,7 +129,7 @@ else: (_unicode_decode(dest), _unicode_decode(attr))) else: try: - with open(os.devnull, 'wb') as f: + with open(_os.devnull, 'wb') as f: subprocess.call(["getfattr", "--version"], stdout=f) subprocess.call(["setfattr", "--version"], stdout=f) except OSError: