Pylint for job_imager.py
authorZhuoX Li <zhuox.li@intel.com>
Tue, 4 Mar 2014 10:43:48 +0000 (18:43 +0800)
committerEduard Bartosh <eduard.bartosh@intel.com>
Mon, 5 May 2014 11:25:07 +0000 (14:25 +0300)
: 31,0: Line too long (83/80)

Change-Id: I9f73d78cb8c4021e1f1953fcf4efe9655bca4ed0

job_imager.py

index eb0e371..6c315be 100755 (executable)
@@ -41,9 +41,10 @@ def run_inside_vm(vm_image, vm_memory, vm_cpus, basedir):
     basedir(usually $WORKSPACE/mic) is shared by VM as Plan9 mount
     for cache and results
     """
-    cmd = 'qemu-system-x86_64 -machine accel=kvm:xen:tcg -name opensuse -M pc '\
-          '-m %d -smp %d -vga none -drive file=%s,snapshot=on -nographic -virtfs '\
-          'local,id=test_dev,path=%s,security_model=mapped,mount_tag=share' % \
+    cmd = 'qemu-system-x86_64 -machine accel=kvm:xen:tcg -name opensuse '\
+          '-M pc -m %d -smp %d -vga none -drive file=%s,snapshot=on '\
+          '-nographic -virtfs local,id=test_dev,path=%s, '\
+          'security_model=mapped,mount_tag=share' % \
           (vm_memory, vm_cpus, vm_image, basedir)
 
     subprocess.call(cmd, stdout=sys.stdout,