summaryrefslogtreecommitdiff
path: root/portato
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--portato/gui/windows/main.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index eaed760..562e603 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -1363,7 +1363,10 @@ class MainWindow (Window):
string = string+"<i>- %s</i>" % ("\n- ".join(disabled),)
if expanded:
- string = string+"\n\n"+"\n".join(expanded)
+ if string:
+ string += "\n\n"
+
+ string += "\n".join(expanded)
tooltip.set_markup(string)
return string != ""
d> 2012-09-18Quote the program name.Jason A. Donenfeld1-4/+4 2012-09-17Abstract potentially platform specific commands into their own commands.Jason A. Donenfeld4-72/+97 2012-09-16Support recursive and forced removal.Jason A. Donenfeld2-12/+28 2012-09-16Small stylistic things.Jason A. Donenfeld1-9/+9 2012-09-15Use --force flag in keepassx import.Jason A. Donenfeld1-1/+1