patched fpdf for 2.5, thanks Niphlod

This commit is contained in:
mdipierro
2013-03-15 15:28:50 -05:00
parent bfd385f969
commit 45a5b436c8
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ before_script:
- psql -c 'create database test_w2p;' -U postgres
#Temporal solution to travis issue #155
- sudo chmod 777 /dev/shm
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
script: PYTHONPATH=. unit2 -v gluon.tests
notifications:
+1 -1
View File
@@ -1 +1 @@
Version 2.4.4-stable+timestamp.2013.03.15.15.11.13
Version 2.4.4-stable+timestamp.2013.03.15.15.28.00
+2 -2
View File
@@ -450,7 +450,7 @@ class FPDF(object):
fh = open(unifilename, "w")
pickle.dump(font_dict, fh)
fh.close()
except IOError as e:
except IOError, e:
if not e.errno == errno.EACCES:
raise # Not a permission error.
del ttf
@@ -1341,7 +1341,7 @@ class FPDF(object):
font_dict['range'] = range_
pickle.dump(font_dict, fh)
fh.close()
except IOError as e:
except IOError, e:
if not e.errno == errno.EACCES:
raise # Not a permission error.
if (font['cw'][cid] == 0):