Skip to content

Commit

Permalink
plone52
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico committed Jan 11, 2024
1 parent f4b21b8 commit a445fcf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pas/plugins/passwordstrength/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
from OFS.Cache import Cacheable
from pas.plugins.passwordstrength import _
from plone import api
from plone.base.utils import safe_text
try:
from plone.base.utils import safe_text
except ImportError:
from Products.CMFPlone.utils import safe_unicode
from Products.PluggableAuthService.interfaces.plugins import IValidationPlugin

# from pas.plugins.passwordstrength import logger
Expand Down

0 comments on commit a445fcf

Please sign in to comment.