Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsoas-assimilator.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/soas-assimilator.py b/soas-assimilator.py
index 6a8a74e..842f10c 100755
--- a/soas-assimilator.py
+++ b/soas-assimilator.py
@@ -461,9 +461,11 @@ class tApp (object) :
Ask the user whether to create an image of a USB stick.
"""
askDialog = gtk.MessageDialog(type=gtk.MESSAGE_QUESTION,
- buttons=gtk.BUTTONS_NONE,
- message_format="\n".join([x.strip() for x in """
+ buttons=gtk.BUTTONS_NONE)
+ askDialog.set_markup("\n".join([x.strip() for x in """
Once the write mode is active, it will overwrite ANY USB stick you plug in. You now (and only now) have the chance to read an existing USB stick and save an image of it to the directory you just chose.
+ <span underline="single">After</span> choosing "Create image first", any stick you plug in will be read out automatically.
+
What do you want to do?
""".split("\n")]))