Changeset - 3a1cf70e0f42
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 12 years ago 2013-05-22 20:14:48
marcin@python-works.com
Fix check statements from () which had no effect really
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/__init__.py
Show inline comments
 
@@ -55,8 +55,8 @@ __dbversion__ = 12  # defines current db
 
__platform__ = platform.system()
 
__license__ = 'GPLv3'
 
__py_version__ = sys.version_info
 
__author__ = 'Marcin Kuzminski'
 
__url__ = 'http://rhodecode.org'
 

	
 
is_windows = __platform__ in ('Windows')
 
is_windows = __platform__ in ['Windows']
 
is_unix = not is_windows
setup.py
Show inline comments
 
@@ -27,13 +27,13 @@ __version__ = _get_meta_var('VERSION', _
 
__license__ = _get_meta_var('__license__', _metadata)
 
__author__ = _get_meta_var('__author__', _metadata)
 
__url__ = _get_meta_var('__url__', _metadata)
 
# defines current platform
 
__platform__ = platform.system()
 

	
 
is_windows = __platform__ in ('Windows')
 
is_windows = __platform__ in ['Windows']
 

	
 
requirements = [
 
    "waitress==0.8.2",
 
    "webob==1.0.8",
 
    "webtest==1.4.3",
 
    "Pylons==1.0.0",
0 comments (0 inline, 0 general)