From 5c53e91593183ddac146dfeb629defedebe29a29 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 19 Nov 2016 19:08:14 +0300 Subject: [PATCH] Fix relative imports --- pygost/gost34112012256.py | 2 +- pygost/gost34112012512.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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): -- 2.44.0