Merge pull request #386 from nextcloud/some-minor-fixes

Some minor fixes
This commit is contained in:
Lukas Reschke 2016-12-01 12:02:09 +01:00 коммит произвёл GitHub
Родитель 512f08e768 6aa6a1869a
Коммит 42f1f40ca7
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -115,4 +115,8 @@ class CertificateValidator:
raise CertificateAppIdMismatchException(msg)
def _to_cert(self, certificate: str) -> X509:
return load_certificate(FILETYPE_PEM, certificate.encode())
try:
return load_certificate(FILETYPE_PEM, certificate.encode())
except Exception as e:
msg = '%s: %s' % ('Invalid certificate', str(e))
raise InvalidCertificateException(msg)

Просмотреть файл

@ -22,7 +22,7 @@ def get_versions():
def validate_id(input: str) -> str:
regex = r'^([A-Z][a-z]+)+$'
regex = r'^([A-Z][a-z]*)+$'
if not re.match(regex, input):
raise ValidationError(_('The app name must be camel case e.g. MyApp'))