4a6ab956fe
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#b47cf5c7c221d52f659303fe41a406239a74d8d3
27 lines
835 B
Diff
27 lines
835 B
Diff
From f0f030495dddb2e633403f360fdaaf6951da11ad 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.29.0
|
|
|