Skip to content
Snippets Groups Projects
Commit 2258f82f authored by Moul's avatar Moul
Browse files

[Typo] remove spaces in parenthesis

parent 1fd9e9d7
No related branches found
No related tags found
No related merge requests found
...@@ -208,7 +208,7 @@ class CommunityWidget(QWidget, Ui_CommunityWidget): ...@@ -208,7 +208,7 @@ class CommunityWidget(QWidget, Ui_CommunityWidget):
text += self.tr(" Block {0}").format(latest_block_number) text += self.tr(" Block {0}").format(latest_block_number)
try: try:
block = yield from self.community.get_block(latest_block_number) block = yield from self.community.get_block(latest_block_number)
text += " ( {0} )".format(QLocale.toString( text += " ({0})".format(QLocale.toString(
QLocale(), QLocale(),
QDateTime.fromTime_t(block['medianTime']), QDateTime.fromTime_t(block['medianTime']),
QLocale.dateTimeFormat(QLocale(), QLocale.NarrowFormat) QLocale.dateTimeFormat(QLocale(), QLocale.NarrowFormat)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment