Skip to content

Commit

Permalink
Merge pull request #149 from resmo/fix/python_craft_2.2
Browse files Browse the repository at this point in the history
fix ImportError in craft helper file
  • Loading branch information
josephmancuso authored Aug 5, 2019
2 parents 75c5932 + 167723c commit 4218aed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions craft
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ successfully import commands for you.
"""

from cleo import Application
from masonite import info
from masonite import __version__

from wsgi import container

application = Application('Masonite Version:', info.VERSION)
application = Application('Masonite Version:', __version__)

for key, value in container.providers.items():
if isinstance(key, str) and key.endswith('Command'):
Expand Down

0 comments on commit 4218aed

Please sign in to comment.