Skip to content

Commit

Permalink
[console] just a little optical change
Browse files Browse the repository at this point in the history
  • Loading branch information
koivo committed Aug 18, 2018
1 parent d396a8d commit 0557de3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/python/Screens/Console.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def updateTitle(self):
self.setTitle(self.newtitle)

def startRun(self):
self["text"].setText(_("Execution progress:") + "\n\n")
self["summary_description"].setText(_("Execution progress:"))
self["text"].setText(_("...") + "\n\n")
self["summary_description"].setText(_("..."))
print "Console: executing in run", self.run, " the command:", self.cmdlist[self.run]
if self.container.execute(self.cmdlist[self.run]): #start of container application failed...
self.runFinished(-1) # so we must call runFinished manual
Expand All @@ -56,8 +56,8 @@ def runFinished(self, retval):
else:
lastpage = self["text"].isAtLastPage()
str = self["text"].getText()
str += _("Execution finished!!")
self["summary_description"].setText(_("Execution finished!!"))
str += _("...")
self["summary_description"].setText(_("..."))
self["text"].setText(str)
if lastpage:
self["text"].lastPage()
Expand Down

0 comments on commit 0557de3

Please sign in to comment.