From: Sergey Matveev Date: Sat, 19 Nov 2016 16:08:14 +0000 (+0300) Subject: Fix relative imports X-Git-Tag: 3.0~12 X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=commitdiff_plain;h=5c53e91593183ddac146dfeb629defedebe29a29 Fix relative imports --- diff --git a/pygost/gost34112012256.py b/pygost/gost34112012256.py index bfb8448..1f3c62c 100644 --- a/pygost/gost34112012256.py +++ b/pygost/gost34112012256.py @@ -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): diff --git a/pygost/gost34112012512.py b/pygost/gost34112012512.py index 4cbdbd4..961a459 100644 --- a/pygost/gost34112012512.py +++ b/pygost/gost34112012512.py @@ -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):