Add missing space to output string

It was previously printing "Upgrading LocalStatus cache from version 1to version 2 for XXX"

Signed-off-by: John Ferlito <johnf@inodes.org>
This commit is contained in:
John Ferlito 2017-11-25 14:23:42 +11:00
parent 681e271fc0
commit 8e0042d497
No known key found for this signature in database
GPG Key ID: 4FFB060C9EC70B95
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class LocalStatusFolder(BaseFolder):
# Convert from format v1.
elif line == (self.magicline % 1):
self.ui._msg('Upgrading LocalStatus cache from version 1'
self.ui._msg('Upgrading LocalStatus cache from version 1 '
'to version 2 for %s:%s'% (self.repository, self))
self.readstatus_v1(cachefd)
cachefd.close()