Remove the ASCII text from console

This commit is contained in:
blitzmann
2018-05-07 21:55:47 -04:00
parent c99afa79e1
commit 42ad74158b

34
pyfa.py
View File

@@ -26,23 +26,23 @@ from optparse import AmbiguousOptionError, BadOptionError, OptionParser
from service.prereqsCheck import PreCheckException, PreCheckMessage, version_precheck, version_block from service.prereqsCheck import PreCheckException, PreCheckMessage, version_precheck, version_block
import config import config
ascii_text = ''' # ascii_text = '''
++++++++++++++++++++++++++++++++++++++++++++++++++ # ++++++++++++++++++++++++++++++++++++++++++++++++++
#
/ _| # / _|
_ __ _ _ | | # _ __ _ _ | |
| '_ \ | | | || _|/ _` | # | '_ \ | | | || _|/ _` |
| |_) || |_| || | | (_| | # | |_) || |_| || | | (_| |
| .__/ \__, ||_| \__,_| # | .__/ \__, ||_| \__,_|
| | __/ | # | | __/ |
|_| |___/ # |_| |___/
#
You are running a alpha/beta version of pyfa. # You are running a alpha/beta version of pyfa.
#
++++++++++++++++++++++++++++++++++++++++++++++++++ # ++++++++++++++++++++++++++++++++++++++++++++++++++
''' # '''
#
print(ascii_text) # print(ascii_text)
class PassThroughOptionParser(OptionParser): class PassThroughOptionParser(OptionParser):