170610ef88
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/policycoreutils.git#b96da6593911f3b75a2849b5cf8c90b3e98c2977
27 lines
835 B
Diff
27 lines
835 B
Diff
From 5c45c9cc13529ba6cb840010a3feda31b7c0fe78 Mon Sep 17 00:00:00 2001
|
|
From: Miroslav Grepl <mgrepl@redhat.com>
|
|
Date: Fri, 20 Feb 2015 16:42:01 +0100
|
|
Subject: [PATCH] We want to remove the trailing newline for
|
|
/etc/system_release.
|
|
|
|
---
|
|
python/sepolicy/sepolicy/__init__.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/python/sepolicy/sepolicy/__init__.py b/python/sepolicy/sepolicy/__init__.py
|
|
index ad718797ca68..ea05d892bf3b 100644
|
|
--- a/python/sepolicy/sepolicy/__init__.py
|
|
+++ b/python/sepolicy/sepolicy/__init__.py
|
|
@@ -1211,7 +1211,7 @@ def get_os_version():
|
|
system_release = ""
|
|
try:
|
|
with open('/etc/system-release') as f:
|
|
- system_release = f.readline()
|
|
+ system_release = f.readline().rstrip()
|
|
except IOError:
|
|
system_release = "Misc"
|
|
|
|
--
|
|
2.30.0
|
|
|