mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-28 04:03:21 -04:00
Merge pull request #5957 from Gu1nness/5734-1.1-maint
Use an exception catching to avoid a stack trace
This commit is contained in:
commit
abbc8a6cb9
1 changed files with 6 additions and 2 deletions
|
|
@ -9,6 +9,7 @@ from enum import Enum
|
|||
|
||||
from . import shellpattern
|
||||
from .helpers import clean_lines
|
||||
from .helpers import Error
|
||||
|
||||
|
||||
def parse_patternfile_line(line, roots, ie_commands, fallback):
|
||||
|
|
@ -53,8 +54,11 @@ class ArgparsePatternFileAction(argparse.Action):
|
|||
Lines empty or starting with '#' after stripping whitespace on both line ends are ignored.
|
||||
"""
|
||||
filename = values[0]
|
||||
with open(filename) as f:
|
||||
self.parse(f, args)
|
||||
try:
|
||||
with open(filename) as f:
|
||||
self.parse(f, args)
|
||||
except FileNotFoundError as e:
|
||||
raise Error(str(e))
|
||||
|
||||
def parse(self, fobj, args):
|
||||
load_pattern_file(fobj, args.paths, args.patterns)
|
||||
|
|
|
|||
Loading…
Reference in a new issue