From: noah morrison Date: Tue, 18 Nov 2014 21:38:12 +0000 (-0500) Subject: Added __init__.py and started using relative paths X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=9bb78deccd032a75ba596663bd89a7b18fa8ef87;p=chevron.git Added __init__.py and started using relative paths --- diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..5ac41ff --- /dev/null +++ b/__init__.py @@ -0,0 +1,3 @@ +from .chevron import main, render, UnclosedSection, cli_main + +__all__ = ['main', 'render', 'UnclosedSection', 'cli_main'] diff --git a/chevron/__init__.py b/chevron/__init__.py index 5227f4d..5ac41ff 100644 --- a/chevron/__init__.py +++ b/chevron/__init__.py @@ -1,3 +1,3 @@ -from chevron.chevron import main, render, UnclosedSection, cli_main +from .chevron import main, render, UnclosedSection, cli_main __all__ = ['main', 'render', 'UnclosedSection', 'cli_main']