Skip to content

Commit 4218aed

Browse files
Merge pull request #149 from resmo/fix/python_craft_2.2
fix ImportError in craft helper file
2 parents 75c5932 + 167723c commit 4218aed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

craft

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ successfully import commands for you.
66
"""
77

88
from cleo import Application
9-
from masonite import info
9+
from masonite import __version__
1010

1111
from wsgi import container
1212

13-
application = Application('Masonite Version:', info.VERSION)
13+
application = Application('Masonite Version:', __version__)
1414

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

0 commit comments

Comments
 (0)