Skip to content

Commit

Permalink
[save-] fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
saulpw committed Nov 1, 2023
1 parent e5f2dad commit 493ed81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visidata/modify.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def couldOverwrite(vd) -> bool:
def confirmOverwrite(vd, path, msg:str=''):
'Fail if file exists and overwrite not allowed.'
if path.exists():
msg = msg or f'{givenpath} exists. overwrite? '
msg = msg or f'{path.given} exists. overwrite? '
ow = vd.options.overwrite
if ow.startswith('c'): # confirm
vd.confirm(msg)
Expand Down

0 comments on commit 493ed81

Please sign in to comment.