Skip to content

Commit

Permalink
fix : python2.7 build bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Oct 28, 2017
1 parent 3ed0a59 commit 4ef5730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions art/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ def tsave(text,font=DEFAULT_FONT,filename="art",chr_ignore=True,print_status=Tru
file.close()
if print_status==True:
print("Saved! \nFilename: "+test_name+".txt")
except Exception as e:
print(str(e))
except Exception :
pass

def text2art(text,font=DEFAULT_FONT,chr_ignore=True):
'''
Expand Down

0 comments on commit 4ef5730

Please sign in to comment.