UPnP status bar update fix

This commit is contained in:
mailchuck 2015-12-29 16:36:14 +01:00 committed by Peter Surda
parent 1b36da9327
commit 4033b945ee
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class uPnPThread(threading.Thread, StoppableThread):
logger.debug("Found UPnP router at %s", ip)
self.routers.append(newRouter)
self.createPortMapping(newRouter)
shared.UISignalQueue.put(('updateStatusBar', tr.translateText("MainWindow",'UPnP port mapping established on port {}').format(self.extPort)))
shared.UISignalQueue.put(('updateStatusBar', tr.translateText("MainWindow",'UPnP port mapping established on port %1').arg(str(self.extPort))))
break
except socket.timeout as e:
pass