Skip to content

Commit

Permalink
Windows has a problem with the logo
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherMayes committed Sep 16, 2020
1 parent 84598d7 commit d7ea8f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xopt/cnsga.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,10 @@ def vprint(*a, **k):
sys.stdout.flush()

# Logo
vprint(cnsga_logo)
try:
vprint(cnsga_logo)
except:
vprint('CNSGA') # Windows has a problem with the logo

if not executor:
executor = DummyExecutor()
Expand Down

0 comments on commit d7ea8f1

Please sign in to comment.