Revize eade7427
Přidáno uživatelem Stanislav Král před asi 4 roky(ů)
src/controllers/certificates_controller.py | ||
---|---|---|
361 | 361 |
except ValueError: |
362 | 362 |
return E_WRONG_PARAMETERS, C_BAD_REQUEST |
363 | 363 |
|
364 |
# find a certificate with using the given ID
|
|
364 |
# find a certificate using the given ID |
|
365 | 365 |
cert = self.certificate_service.get_certificate(v) |
366 | 366 |
|
367 | 367 |
if cert is None: |
... | ... | |
390 | 390 |
except ValueError: |
391 | 391 |
return E_WRONG_PARAMETERS, C_BAD_REQUEST |
392 | 392 |
|
393 |
# find a certificate with using the given ID
|
|
393 |
# find a certificate using the given ID |
|
394 | 394 |
cert = self.certificate_service.get_certificate(v) |
395 | 395 |
|
396 | 396 |
if cert is None: |
Také k dispozici: Unified diff
Re #8573 - Fixed typos