From d460fb78ab910972bb9462fa60e99e081ad5d883 Mon Sep 17 00:00:00 2001
From: "Gary Ruben (Monash University)" <gary.ruben@monash.edu>
Date: Thu, 10 Sep 2020 17:51:13 +1000
Subject: [PATCH] explicitly escaped parentheses in paths

---
 md5_to_vault.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/md5_to_vault.py b/md5_to_vault.py
index e7255e4..0954eb2 100644
--- a/md5_to_vault.py
+++ b/md5_to_vault.py
@@ -52,6 +52,7 @@ def escape_path(path):
     escaped_path = path.replace('(', '\(').replace(')', '\)')
     return escaped_path
 
+
 @dataclass
 class Node:
     """A directory tree node"""
-- 
GitLab