From 4e44306e8c10fcea59f6927035ce9b956d4140e9 Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Wed, 23 Apr 2014 17:04:54 +0300 Subject: keepassx2pass: handle forward slash '/' in titles Without this, a forward slash in the title creates a new directory in the password-store. This replaces forward slashes with dashes. --- contrib/importers/keepassx2pass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/importers') diff --git a/contrib/importers/keepassx2pass.py b/contrib/importers/keepassx2pass.py index 1505edc..532b8d0 100755 --- a/contrib/importers/keepassx2pass.py +++ b/contrib/importers/keepassx2pass.py @@ -26,7 +26,7 @@ def space_to_camelcase(value): def cleanTitle(title): # make the title more command line friendly - title = re.sub("(\\|\||\(|\))", "-", title) + title = re.sub("(\\|\||\(|\)|/)", "-", title) title = re.sub("-$", "", title) title = re.sub("\@", "At", title) title = re.sub("'", "", title) -- cgit v1.2.3