From 892322a758011448f5a846a69d6af5cbc8171cc8 Mon Sep 17 00:00:00 2001
From: Fat-Zer <fatzer2@gmail.com>
Date: Wed, 2 Jul 2025 13:43:00 +0000
Subject: [minor] tdeioslave/media: remove a trailing \n in the error string

Note that other strings assigned to m_errorStr don't have a trailing endline.

Signed-off-by: Fat-Zer <fatzer2@gmail.com>
---
 tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp b/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp
index 5e921ffd4..a68759d3b 100644
--- a/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp
+++ b/tdeioslave/media/mounthelper/tdeio_media_mounthelper.cpp
@@ -50,7 +50,7 @@ const Medium MountHelper::findMedium(const TQString &device)
 	DCOPReply reply = mediamanager.call("properties", device);
 	if (!reply.isValid())
 	{
-		m_errorStr = i18n("The TDE mediamanager is not running.\n");
+		m_errorStr = i18n("The TDE mediamanager is not running.");
 		return Medium(TQString::null, TQString::null, TQString::null);
 	}
 	const Medium &medium = Medium::create(reply);
-- 
cgit v1.2.3

