moved pyfpdf to fpdf, thanks Mariano

This commit is contained in:
mdipierro
2012-08-23 08:35:41 -05:00
parent c4c9024ee0
commit a528df0b2e
9 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-08-23 08:31:01) dev
Version 2.00.0 (2012-08-23 08:35:38) dev
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"FPDF for python (a.k.a. pyfpdf)"
# Read more about this http://code.google.com/p/pyfpdf
# Please note that new package name is fpdf (to avoid some naming conflicts)
# import fpdf into pyfpdf for backward compatibility (prior web2py 2.0):
from fpdf import *
# import warnings
# warnings.warn("pyfpdf package name is deprecated, please use fpdf instead")