Skip to content

Commit

Permalink
Fix typo in wrap.py
Browse files Browse the repository at this point in the history
  • Loading branch information
randy408 authored and mensinda committed Nov 30, 2021
1 parent 0ac2e4b commit 79c3e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/wrap/wrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def apply_patch(self) -> None:
patch_dir = self.wrap.values['patch_directory']
src_dir = os.path.join(self.wrap.filesdir, patch_dir)
if not os.path.isdir(src_dir):
raise WrapException(f'patch directory does not exists: {patch_dir}')
raise WrapException(f'patch directory does not exist: {patch_dir}')
self.copy_tree(src_dir, self.dirname)

def copy_tree(self, root_src_dir: str, root_dst_dir: str) -> None:
Expand Down

0 comments on commit 79c3e9c

Please sign in to comment.