Python 3.4 compatibility fix
Python3.4 correctly rejects this
a = None
"{0:s}".format(a) # Previous Pythons translate it to "{0!s}".format(a) without telling
Python3.4 correctly rejects this
a = None
"{0:s}".format(a) # Previous Pythons translate it to "{0!s}".format(a) without telling