Skip to content

Commit

Permalink
Merge pull request #97 from zimmermm/master
Browse files Browse the repository at this point in the history
fix issue on windows
  • Loading branch information
szaghi committed Jan 22, 2019
2 parents 0f2d354 + ec02caa commit 222de55
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions release/FoBiS-master/FoBiS.py
Expand Up @@ -17,5 +17,13 @@
# You should have received a copy of the GNU General Public License
# along with FoBiS.py. If not, see <http://www.gnu.org/licenses/>.
from fobis.fobis import main
import sys


if sys.platform == 'win32':
import colorama
colorama.init(convert=True)


if __name__ == '__main__':
main()
8 changes: 8 additions & 0 deletions release/FoBiS-master/scripts/FoBiS.py
Expand Up @@ -17,5 +17,13 @@
# You should have received a copy of the GNU General Public License
# along with FoBiS.py. If not, see <http://www.gnu.org/licenses/>.
from fobis.fobis import main
import sys


if sys.platform == 'win32':
import colorama
colorama.init(convert=True)


if __name__ == '__main__':
main()
8 changes: 8 additions & 0 deletions src/main/python/FoBiS.py
Expand Up @@ -17,5 +17,13 @@
# You should have received a copy of the GNU General Public License
# along with FoBiS.py. If not, see <http://www.gnu.org/licenses/>.
from fobis.fobis import main
import sys


if sys.platform == 'win32':
import colorama
colorama.init(convert=True)


if __name__ == '__main__':
main()
8 changes: 8 additions & 0 deletions src/main/scripts/FoBiS.py
Expand Up @@ -17,5 +17,13 @@
# You should have received a copy of the GNU General Public License
# along with FoBiS.py. If not, see <http://www.gnu.org/licenses/>.
from fobis.fobis import main
import sys


if sys.platform == 'win32':
import colorama
colorama.init(convert=True)


if __name__ == '__main__':
main()

0 comments on commit 222de55

Please sign in to comment.