Skip to content

Commit e5cc661

Browse files
Fixed check for updates text
1 parent a12f933 commit e5cc661

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cq_editor/utils.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,9 @@ def check_gtihub_for_updates(parent,
118118

119119
if newer:
120120
title='Updates available'
121-
text=f'There are newer versions of {github_proj} available on github:'\
122-
'\n'.join(newer)
121+
text=f'There are newer versions of {github_proj} ' \
122+
f'available on github:\n' + '\n'.join(newer)
123+
123124
else:
124125
title='No updates available'
125126
text=f'You are already using the latest version of {github_proj}'

0 commit comments

Comments
 (0)