1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-18 21:09:41 +02:00
This commit is contained in:
dbarzin 2022-06-12 11:14:38 +02:00
parent 6c831b1e01
commit 27710ff92d
3 changed files with 82 additions and 25 deletions

View file

@ -31,7 +31,6 @@ def printDeviceInfo(dev):
print('Serial: %s' % dev.get("ID_SERIAL"))
print('Model: %s' % dev.get("ID_MODEL_ID"))
print(os.stat(dev.get("DEVNAME")))
print("</BLOCK INFORMATION>")
print("")

View file

@ -16,7 +16,7 @@ def updateBar(progress):
global progress_win
pos = (60 * progress) // 100
if pos != 0 :
progress_win.addstr(1, pos, "{}".format("#"))
progress_win.addstr(1, pos, "#")
progress_win.refresh()