[O] Replace \t with " "
This commit is contained in:
@@ -63,7 +63,7 @@ def edit_versions(version: str):
|
|||||||
# 4. neofetch script
|
# 4. neofetch script
|
||||||
print('Editing neofetch...')
|
print('Editing neofetch...')
|
||||||
path = Path('neofetch')
|
path = Path('neofetch')
|
||||||
lines = path.read_text().split('\n')
|
lines = path.read_text().replace("\t", " ").split('\n')
|
||||||
version_i = next(i for i, l in enumerate(lines) if l.startswith('version='))
|
version_i = next(i for i, l in enumerate(lines) if l.startswith('version='))
|
||||||
nf = pv.parse(lines[version_i].replace('version=', ''))
|
nf = pv.parse(lines[version_i].replace('version=', ''))
|
||||||
new = pv.parse(version)
|
new = pv.parse(version)
|
||||||
|
|||||||
Reference in New Issue
Block a user