Skip to content

Commit

Permalink
Try once again in stapled, so lib is not a main module and does come …
Browse files Browse the repository at this point in the history
…with the application.
  • Loading branch information
SnijderC committed Nov 30, 2017
1 parent d09c76b commit 5ab0f5d
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[submodule "lib/certvalidator"]
path = lib/certvalidator
path = stapled/lib/certvalidator
url = https://github.com/wbond/certvalidator.git
[submodule "lib/ocspbuilder"]
path = lib/ocspbuilder
path = stapled/lib/ocspbuilder
url = https://github.com/wbond/ocspbuilder.git
[submodule "lib/asn1crypto"]
path = lib/asn1crypto
path = stapled/lib/asn1crypto
url = https://github.com/wbond/asn1crypto.git
[submodule "lib/oscrypto"]
path = lib/oscrypto
path = stapled/lib/oscrypto
url = https://github.com/wbond/oscrypto.git
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
import sphinx_rtd_theme
sys.path.insert(0, os.path.abspath('../..'))
from lib import add_paths
from stapled.lib import add_paths
add_paths()

# -- General configuration ------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup
from setuptools import find_packages
from stapled.version import __version__
from lib import find_lib_paths, find_lib_path_dict
from stapled.lib import find_lib_paths, find_lib_path_dict


def all_packages():
Expand Down
2 changes: 1 addition & 1 deletion stapled/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
import os
from stapled.version import __version__, __app_name__
from lib import add_paths
from stapled.lib import add_paths

if add_paths():
LOCAL_LIB_MODE = True
Expand Down
File renamed without changes.

0 comments on commit 5ab0f5d

Please sign in to comment.