Skip to content

Commit

Permalink
mpi: Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Synss committed Sep 21, 2019
1 parent 8b4ca4e commit 6a714bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mbedtls/mpi.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ cdef class MPI:
if not isinstance(modulus, numbers.Integral):
return TypeError("modulus should be an integer")
if exponent < 0:
raise ValueError("exponent must be greater that zero")
raise ValueError("exponent must be greater than zero")
cdef MPI result = MPI()
cdef MPI exponent_ = MPI(exponent)
cdef MPI modulus_ = MPI(modulus)
Expand Down

0 comments on commit 6a714bd

Please sign in to comment.