Changeset - fa74e91695a0
[Not reviewed]
Merge default
0 3 0
Marcin Kuzminski - 14 years ago 2012-02-26 20:56:03
marcin@python-works.com
merge
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/__init__.py
Show inline comments
 
@@ -26,7 +26,7 @@
 
import sys
 
import platform
 

	
 
VERSION = (1, 3, 0)
 
VERSION = (1, 3, 1)
 
__version__ = '.'.join((str(each) for each in VERSION[:4]))
 
__dbversion__ = 5  # defines current db version for migrations
 
__platform__ = platform.system()
rhodecode/lib/__init__.py
Show inline comments
 
@@ -232,6 +232,7 @@ def safe_str(unicode_, to_encoding=None)
 
    :returns: str object
 
    """
 
    
 
    # if it's not basestr cast to str
 
    if not isinstance(unicode_, basestring):
 
        return str(unicode_)
 

	
0 comments (0 inline, 0 general)