From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B81E71381FA for ; Fri, 16 May 2014 18:43:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75AE4E0AD0; Fri, 16 May 2014 18:43:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE8DAE0AD0 for ; Fri, 16 May 2014 18:43:52 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD5293400DE for ; Fri, 16 May 2014 18:43:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 8D0A6182D5 for ; Fri, 16 May 2014 18:43:50 +0000 (UTC) From: "Sven Vermeulen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Vermeulen" Message-ID: <1400265778.198bd85a025f7b81e1d1afc9b594b33f64080e06.swift@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: support/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: support/policyvers.py X-VCS-Directories: support/ X-VCS-Committer: swift X-VCS-Committer-Name: Sven Vermeulen X-VCS-Revision: 198bd85a025f7b81e1d1afc9b594b33f64080e06 X-VCS-Branch: master Date: Fri, 16 May 2014 18:43:50 +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: 4d8e944b-2c6f-48a6-a65d-10a9cb66a755 X-Archives-Hash: ba1a35728039c440d4ba987d3bbd4dc6 commit: 198bd85a025f7b81e1d1afc9b594b33f64080e06 Author: Chris PeBenito tresys com> AuthorDate: Tue May 13 13:39:00 2014 +0000 Commit: Sven Vermeulen gentoo org> CommitDate: Fri May 16 18:42:58 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=198bd85a Need the __future__ import for python2 if using print(). --- support/policyvers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/support/policyvers.py b/support/policyvers.py index a367ef1..834ff3d 100644 --- a/support/policyvers.py +++ b/support/policyvers.py @@ -1,4 +1,5 @@ #!/usr/bin/python +from __future__ import print_function import selinux if selinux.is_selinux_enabled(): print(selinux.security_policyvers())