Skip to content

Commit

Permalink
Fixed a small error that prevented Stallion from starting in newer (#59)
Browse files Browse the repository at this point in the history
versions of Python 3.
  • Loading branch information
thgcode authored and perone committed Jul 31, 2018
1 parent 863e96f commit 1da475d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions stallion/main.py
Expand Up @@ -10,6 +10,11 @@
"""
from optparse import OptionParser

try:
reload
except NameError:
from imp import reload

import sys
import platform
import logging
Expand Down

1 comment on commit 1da475d

@demberto
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make a release with this version

Please sign in to comment.