diff options
| -rw-r--r-- | ishtar_common/widgets.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py index 06d6f20f0..3ecdad310 100644 --- a/ishtar_common/widgets.py +++ b/ishtar_common/widgets.py @@ -248,7 +248,7 @@ class JQueryJqGrid(forms.RadioSelect):                      u"<div id='pager_%s'></div>\n"% (name, name)
          encoding = settings.ENCODING or 'utf-8'
          rendered += u"<div id='foot_%s' class='gridfooter'>\n" % name
 -        if unicode(self.source_full):
 +        if unicode(self.source_full) and unicode(self.source_full) != 'None':
              rendered += u"%s (%s) <a href='%scsv' target='_blank'>%s</a> - "\
                          u"<a href='%scsv' target='_blank'>%s</a>\n" % (
                  unicode(_("Export as CSV")), encoding, unicode(self.source),
 | 
