od_util can be used when od-database is a submodule part 2

This commit is contained in:
Simon
2018-08-08 23:31:50 -04:00
parent 88166054ad
commit f729b462f0
4 changed files with 11 additions and 2 deletions

View File

@@ -5,7 +5,12 @@ import os
import validators
import re
from ftplib import FTP
from . import config
# TODO: find a better way to do this
try:
from . import config
except ImportError:
import config
import urllib3
urllib3.disable_warnings()