bin: remove unused import in buildinfo.py

This was originally added in b1c30f0650 and it now do nothing since 361556a6a7 because it now use readprops.
pull/3901/head
Jorropo 2024-05-15 22:24:25 +02:00
rodzic bd9156de24
commit 9e8ca69a11
1 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -1,9 +1,8 @@
#!/usr/bin/env python3
import configparser
import sys
from readprops import readProps
verObj = readProps('version.properties')
verObj = readProps("version.properties")
propName = sys.argv[1]
print(f"{verObj[propName]}")