Switch to side-by-side view
--- a/Allura/allura/lib/helpers.py +++ b/Allura/allura/lib/helpers.py @@ -39,6 +39,7 @@ return patchit def really_unicode(s): + if s is None: return u'' # try naive conversion to unicode try: return unicode(s)
--- a/Allura/allura/lib/helpers.py +++ b/Allura/allura/lib/helpers.py @@ -39,6 +39,7 @@ return patchit def really_unicode(s): + if s is None: return u'' # try naive conversion to unicode try: return unicode(s)