Skip to content
Snippets Groups Projects
Commit beeb2750 authored by Florent Gluck's avatar Florent Gluck
Browse files

Fixed typo

parent 840d9e07
No related branches found
No related tags found
No related merge requests found
...@@ -509,7 +509,7 @@ func (vms *VMs)ImportFilesToVM(vm *VM, tarGzFile, vmDir string) error { ...@@ -509,7 +509,7 @@ func (vms *VMs)ImportFilesToVM(vm *VM, tarGzFile, vmDir string) error {
// Marks VM as "busy", meaning its disk file is being accessed for a possibly long time. // Marks VM as "busy", meaning its disk file is being accessed for a possibly long time.
if vm.DiskBusy { if vm.DiskBusy {
return nil, errors.New("Cannot import files into VM: disk is already busy") return errors.New("Cannot import files into VM: disk is already busy")
} }
vm.DiskBusy = true vm.DiskBusy = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment