]> Cypherpunks.ru repositories - pygost.git/commitdiff
Fix relative imports
authorSergey Matveev <stargrave@stargrave.org>
Sat, 19 Nov 2016 16:08:14 +0000 (19:08 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sat, 19 Nov 2016 16:08:14 +0000 (19:08 +0300)
pygost/gost34112012256.py
pygost/gost34112012512.py

index bfb84485a491d872746ee396a1a354439201ce5e..1f3c62cfd10b082668d6fce2c53506461e1e80b6 100644 (file)
@@ -4,7 +4,7 @@ This is implementation of :rfc:`6986`. Most function and variable names are
 taken according to specification's terminology.
 """
 
-from gost34112012 import GOST34112012
+from pygost.gost34112012 import GOST34112012
 
 
 class GOST34112012256(GOST34112012):
index 4cbdbd4586f6d3ab0c0167351e1a3c789b9e999b..961a459c69334249cfaf477e72c818104cb7313a 100644 (file)
@@ -4,7 +4,7 @@ This is implementation of :rfc:`6986`. Most function and variable names are
 taken according to specification's terminology.
 """
 
-from gost34112012 import GOST34112012
+from pygost.gost34112012 import GOST34112012
 
 
 class GOST34112012512(GOST34112012):