pombreda / formalchemy

Automatically exported from code.google.com/p/formalchemy
MIT License
0 stars 0 forks source link

Grids do not render (at revision 738 and most probably trunk) because of missing import #91

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
warnings.warn is called without importing `warnings`

This patch fixes it:

Index: tables.py
===================================================================
--- tables.py   (révision 738)
+++ tables.py   (copie de travail)
@@ -10,6 +10,7 @@

 from tempita import Template as TempitaTemplate # must import after base

+import warnings

 __all__ = ["Grid"]

Original issue reported on code.google.com by wackysa...@gmail.com on 8 Apr 2009 at 7:03

GoogleCodeExporter commented 9 years ago
applied, thanks

Original comment by jbel...@gmail.com on 8 Apr 2009 at 7:27