diff options
author | Karl Berry <karl@freefriends.org> | 2016-04-07 16:52:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-04-07 16:52:56 +0000 |
commit | e1e1d6fa3224440612d3ad6595c413f88d552702 (patch) | |
tree | eaa3301c9fecd1d01baa642b2e483fee4430bcee /Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py | |
parent | 0eefec13710bb4d6aff6838a6efc463912506ee9 (diff) |
asymptote 2.37
git-svn-id: svn://tug.org/texlive/trunk@40303 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py')
-rwxr-xr-x | Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py b/Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py index 3afecfd349c..7f07d5748d7 100755 --- a/Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py +++ b/Master/texmf-dist/asymptote/GUI/xasyGUIIcons.py @@ -53,11 +53,11 @@ iconB64 = { def createGIF(key): """Create a gif file from the data in the iconB64 list of icons""" if key not in iconB64.keys(): - print "Error: %s not found in icon list."%key - print "Available icons:",iconB64.keys() + print ("Error: {:s} not found in icon list.".format(key)) + print ("Available icons:",iconB64.keys()) else: - print "Generating %s.gif"%key - open("%s.gif"%key,"w").write(base64.decodestring(iconB64[key])) + print ("Generating {:s}.gif".format(key)) + open("{:s}.gif".format(key),"w").write(base64.decodestring(iconB64[key])) def createGIFs(): """Create the files for all the icons in iconB64""" @@ -69,24 +69,24 @@ def createStrFromGif(gifFile): return base64.encodestring(gifFile.read()) if __name__=='__main__': - print "Testing the xasyGUIIcons module." - print "Generating all the GIFs:" + print ("Testing the xasyGUIIcons module.") + print ("Generating all the GIFs:") createGIFs() - print "Checking consistency of all icons in iconB64" + print ("Checking consistency of all icons in iconB64") allpassed = True for icon in iconB64.keys(): - print ("Checking %s"%icon), - if createStrFromGif(open("%s.gif"%icon,"rb")) == iconB64[icon]: - print "\tPassed." + print ("Checking {:s}".format(icon)) + if createStrFromGif(open("{:s}.gif".format(icon),"rb")) == iconB64[icon]: + print ("\tPassed.") else: - print "\tFailed." + print ("\tFailed.") allpassed= False if allpassed: - print "All files succeeded." + print ("All files succeeded.") s = raw_input("Delete generated files? (y/n)") if s == "y": for name in iconB64.keys(): - print "Deleting %s.gif"%name, + print ("Deleting {:s}.gif".format(name)) os.unlink(name+".gif") - print "\tdone" - print "Done" + print ("\tdone") + print ("Done") |