Skip to content

Commit

Permalink
qvm-template: Make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
WillyPillow committed Sep 6, 2020
1 parent 161ff01 commit b9f1d4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qubesadmin/tools/qvm_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,8 @@ def info_to_machine_output(tpls, replace_newline=True):
buildtime, licence, url, summary, description = data
dlsize = str(dlsize)
buildtime = buildtime.strftime(DATE_FMT)
install_time = install_time.strftime(DATE_FMT) if install_time else ''
install_time = install_time.strftime(DATE_FMT) \
if install_time else ''
if replace_newline:
description = description.replace('\n', '|')
output.append({
Expand Down

0 comments on commit b9f1d4c

Please sign in to comment.