Index: /trunk/src/VBox/ValidationKit/tests/usb/usbgadget.py
===================================================================
--- /trunk/src/VBox/ValidationKit/tests/usb/usbgadget.py	(revision 54120)
+++ /trunk/src/VBox/ValidationKit/tests/usb/usbgadget.py	(revision 54121)
@@ -58,5 +58,6 @@
             # For the ODroid-XU3 gadget we have to do a soft connect for the attached host to recognise the device.
             if self.sGadgetType == 'ODroid-XU3':
-                fRc = self.oTxsSession.syncExecEx('/usr/bin/sh', ('/usr/bin/sh', '-c', 'echo connect > /sys/class/udc/12400000.dwc3/soft_connect'));
+                fRc = self.oTxsSession.syncExecEx('/usr/bin/sh', \
+                        ('/usr/bin/sh', '-c', 'echo connect > /sys/class/udc/12400000.dwc3/soft_connect'));
 
         return fRc;
@@ -72,5 +73,6 @@
             # For the ODroid-XU3 gadget we do a soft disconnect before unloading the gadget driver.
             if self.sGadgetType == 'ODroid-XU3':
-                fRc = self.oTxsSession.syncExecEx('/usr/bin/sh', ('/usr/bin/sh', '-c', 'echo disconnect > /sys/class/udc/12400000.dwc3/soft_connect'));
+                fRc = self.oTxsSession.syncExecEx('/usr/bin/sh', \
+                        ('/usr/bin/sh', '-c', 'echo disconnect > /sys/class/udc/12400000.dwc3/soft_connect'));
             fRc = self.oTxsSession.syncExecEx('/usr/bin/rmmod', ('/usr/bin/rmmod', sModule));
 
