aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-03-03 21:33:39 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-03-03 21:33:39 +0200
commit7ad280cbe954a2769956c846aaa0112d43a550c9 (patch)
treea9b4be90d28fb4142af8e441078176d7d6cfa408
parent441db5033a67e30f0e392f82ae70334a6fc3feff (diff)
downloadcryptography-7ad280cbe954a2769956c846aaa0112d43a550c9.tar.gz
cryptography-7ad280cbe954a2769956c846aaa0112d43a550c9.tar.bz2
cryptography-7ad280cbe954a2769956c846aaa0112d43a550c9.zip
Fix pep8 issues
-rw-r--r--cryptography/hazmat/primitives/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index 04537f8c..3ffe09f1 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -297,7 +297,7 @@ class DSAParams(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def subgroup_order(self):
"""
- The subgroup order that's used in generating the DSA keypair
+ The subgroup order that's used in generating the DSA keypair
by the generator.
"""
@@ -323,7 +323,7 @@ class DSAParams(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def q(self):
"""
- The subgroup order that's used in generating the DSA keypair
+ The subgroup order that's used in generating the DSA keypair
by the generator.
Alias for subgroup_order.
"""