mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Removes needless whitespace
There is space after authors names, so space before `ISBN:` produces two whitespace in row.
This commit is contained in:
parent
6ec600ccf4
commit
9583ba6476
@ -511,7 +511,7 @@ class IdentifyWidget(QWidget): # {{{
|
||||
x = ', '.join('%s:%s'%(k, v) for k, v in identifiers.iteritems())
|
||||
parts.append(x)
|
||||
if 'isbn' in identifiers:
|
||||
simple_desc += ' ISBN: %s' % identifiers['isbn']
|
||||
simple_desc += 'ISBN: %s' % identifiers['isbn']
|
||||
self.query.setText(simple_desc)
|
||||
self.log(unicode(self.query.text()))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user