Bugfix: wimlib sections
This commit is contained in:
parent
ffa2abb2b4
commit
c52681be05
2 changed files with 4 additions and 4 deletions
|
|
@ -16,7 +16,7 @@ def backup_partition(disk, par):
|
|||
|
||||
cmd = [
|
||||
global_vars['Tools']['wimlib-imagex'],
|
||||
'capture'
|
||||
'capture',
|
||||
'{}:\\'.format(par['Letter']),
|
||||
par['Image Path'],
|
||||
par['Image Name'], # Image name
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ def menu_backup():
|
|||
other_results = other_results,
|
||||
disk = disk,
|
||||
par = par)
|
||||
if not result['CS']:
|
||||
if not result['CS'] and not isinstance(result['Error'], GenericAbort):
|
||||
errors = True
|
||||
par['Error'] = result['Error']
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue