Skip to content

Commit

Permalink
chore(pylint): Patch typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lperdereau committed Dec 16, 2024
1 parent e65eb77 commit e4d1ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pvecontrol/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def print_task(proxmox, upid, follow=False, wait=False):
log = task.log(limit=0, start=lastline)
logging.debug("Task Log: %s", log)
for line in log:
print(str({line["t"]}))
print(str(line["t"]))
if line["n"] > lastline:
lastline = line["n"]
time.sleep(1)
Expand Down

0 comments on commit e4d1ef8

Please sign in to comment.