diff options
Diffstat (limited to 'contrib/importers')
| -rwxr-xr-x | contrib/importers/keepassx2pass.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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) |