From a0165a9e6cb645df35d4838acfcf8b94ac2d56bd Mon Sep 17 00:00:00 2001 From: basti Date: Tue, 4 Dec 2018 15:03:40 +0100 Subject: [PATCH] Fixed: "No Module named bin Error" V2 --- bin/Modules/Ensembl/FTPHandling/URLRetrieve.py | 2 +- bin/Modules/Ensembl/FTPHandling/VersionChecker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Modules/Ensembl/FTPHandling/URLRetrieve.py b/bin/Modules/Ensembl/FTPHandling/URLRetrieve.py index 0c164d7..598a6f5 100644 --- a/bin/Modules/Ensembl/FTPHandling/URLRetrieve.py +++ b/bin/Modules/Ensembl/FTPHandling/URLRetrieve.py @@ -1,5 +1,5 @@ import ftplib -from bin.Modules.Ensembl.FTPHandling.FTPEntry import FTPEntry +from Modules.Ensembl.FTPHandling.FTPEntry import FTPEntry class FTPHandler: diff --git a/bin/Modules/Ensembl/FTPHandling/VersionChecker.py b/bin/Modules/Ensembl/FTPHandling/VersionChecker.py index 6992dde..26c284d 100644 --- a/bin/Modules/Ensembl/FTPHandling/VersionChecker.py +++ b/bin/Modules/Ensembl/FTPHandling/VersionChecker.py @@ -1,4 +1,4 @@ -from bin.Modules.Ensembl.FTPHandling.URLRetrieve import FTPHandler +from Modules.Ensembl.FTPHandling.URLRetrieve import FTPHandler import os.path