##// END OF EJS Templates
merge
marcink -
r2044:fa74e916 merge default
parent child Browse files
Show More
@@ -26,7 +26,7 b''
26 26 import sys
27 27 import platform
28 28
29 VERSION = (1, 3, 0)
29 VERSION = (1, 3, 1)
30 30 __version__ = '.'.join((str(each) for each in VERSION[:4]))
31 31 __dbversion__ = 5 # defines current db version for migrations
32 32 __platform__ = platform.system()
@@ -232,6 +232,7 b' def safe_str(unicode_, to_encoding=None)'
232 232 :returns: str object
233 233 """
234 234
235 # if it's not basestr cast to str
235 236 if not isinstance(unicode_, basestring):
236 237 return str(unicode_)
237 238
General Comments 0
You need to be logged in to leave comments. Login now