Skip to content

Commit

Permalink
remove info.py and fix info command
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavmule committed Jun 8, 2019
1 parent daf960b commit a61d568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions masonite/commands/InfoCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from cleo import Command
from tabulate import tabulate

from masonite.info import VERSION
from masonite.__version__ import __version__


class InfoCommand(Command):
Expand All @@ -27,7 +27,7 @@ def handle(self):
rows.append(['System Memory', str(mem) + ' GB'])
rows.append(['Python Version', self._get_python_info()])
rows.append(['Virtual Environment', self._check_virtual_environment()])
rows.append(['Masonite Version', VERSION])
rows.append(['Masonite Version', __version__])
rows.append(['Craft Version', application._version])

if 'APP_ENV' in os.environ:
Expand Down
3 changes: 0 additions & 3 deletions masonite/info.py

This file was deleted.

0 comments on commit a61d568

Please sign in to comment.