Skip to content

Commit ee4b93d

Browse files
committed
Fix spacing in output
1 parent 2b21dd8 commit ee4b93d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

onyxbackup/util/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ def get_elapsed(self, timedelta, granularity=2):
8383
seconds -= value * count
8484
if value == 1:
8585
name = name.rstrip('s')
86-
result.append("{}{}".format(value, name))
87-
return ' '.join(result[:granularity])
86+
result.append("{} {}".format(value, name))
87+
return ', '.join(result[:granularity])
8888

8989
def get_file_size(self, file):
9090
size = 0

0 commit comments

Comments
 (0)