29 lines
713 B
Diff
29 lines
713 B
Diff
From 03a7a035b53d297f38f2cd05cb3fed91e15cf05c Mon Sep 17 00:00:00 2001
|
|
From: John Kacur <jkacur@redhat.com>
|
|
Date: Wed, 11 Dec 2024 15:19:38 -0500
|
|
Subject: [PATCH] tuna: help.py
|
|
|
|
Fix bad indentation in help.py. (Change 8 spaces to 4)
|
|
|
|
Signed-off-by: John Kacur <jkacur@redhat.com>
|
|
---
|
|
tuna/help.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tuna/help.py b/tuna/help.py
|
|
index c913a16..db8b4c8 100644
|
|
--- a/tuna/help.py
|
|
+++ b/tuna/help.py
|
|
@@ -4,7 +4,7 @@ _ = gettext.gettext
|
|
|
|
# gettext_noop
|
|
def N_(s):
|
|
- return s
|
|
+ return s
|
|
|
|
KTHREAD_HELP = {
|
|
'kthreadd':N_('Used to create kernel threads via kthread_create(). It is the parent of all the other kernel threads.'),
|
|
--
|
|
2.50.1
|
|
|