qvm-backup-restore in 3.2rc2 fails with:


  File "/usr/bin/qvm-backup-restore", line 288
    "a new directory named "\
    ^
IndentationError: unexpected indent


Cause: missing backslash on line 287. Trivial patch attached.

Side question: what is the preferred way to report such things: send a patch/email to qubes-devel like now, create an issue on github, or clone the repo/fix the file and send a pull request ?

ivan

--
You received this message because you are subscribed to the Google Groups 
"qubes-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-devel/23421f8b-2925-ec77-ed2c-d1b51c6f56c1%40c3i.bg.
For more options, visit https://groups.google.com/d/optout.
--- /usr/bin/qvm-backup-restore.orig	2016-08-17 14:15:48.211985335 +0300
+++ /usr/bin/qvm-backup-restore	2016-08-17 14:06:43.550997576 +0300
@@ -284,7 +284,7 @@
                 exit(1)
             else:
                 print >> sys.stderr, "Continuing as directed."
-        print >> sys.stderr, "NOTE: Before restoring the dom0 home directory, "
+        print >> sys.stderr, "NOTE: Before restoring the dom0 home directory, "\
                              "a new directory named "\
                              "'home-pre-restore-<current-time>' will be "\
                              "created inside the dom0 home directory. If any "\

Reply via email to