Skip to content

Commit 15f3628

Browse files
Luke DavisLuke Davis
authored andcommitted
Replaced a method unavailable in Python 3.7
1 parent 2ebc6e3 commit 15f3628

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

addon/globalPlugins/versionCollector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def createStructuredList(
279279
line += f"{fieldStart}{field}{fieldEnd}"
280280
if line != "":
281281
if not useHTML: # Remove the extra tab character
282-
line = line.removesuffix("\t")
282+
line = line.rstrip("\t")
283283
returnable += f"{lineStart}{line}{lineEnd}"
284284
return returnable
285285

buildVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _(arg):
2626
"addon_description": _("""Keeps a record of all software names and versions used while running NVDA.
2727
Provides a list that can be copied/exported for diagnostics and support."""),
2828
# version
29-
"addon_version": "23.00.062",
29+
"addon_version": "23.00.063",
3030
# Author(s)
3131
"addon_author": "Luke Davis <XLTechie@newanswertech.com>",
3232
# URL for the add-on documentation support

0 commit comments

Comments
 (0)