Skip to content

Commit 9f47407

Browse files
authored
Capitalize library name in information display (#3682)
* Capitalize library name in information display
1 parent eaf5fe4 commit 9f47407

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/python/Screens/Information.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,7 @@ def displayInformation(self):
712712
libName = eDVBCSAEngine.getLibraryName()
713713
libVersion = eDVBCSAEngine.getLibraryVersion()
714714
if libName and libVersion:
715+
libName = libName.capitalize()
715716
versions.append((libName, libVersion))
716717
for version in versions:
717718
info.append(formatLine("P1", _("%s version") % version[0], version[1]))

0 commit comments

Comments
 (0)