Changeset - 79c5967a1e5c
[Not reviewed]
beta
0 8 0
Marcin Kuzminski - 13 years ago 2012-12-03 02:56:57
marcin@python-works.com
whitespace and formatting
3 files changed with 0 insertions and 4 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/dbmigrate/schema/db_1_4_0.py
Show inline comments
 
@@ -1809,7 +1809,6 @@ class DbMigrateVersion(Base, BaseModel):
 
        {'extend_existing': True, 'mysql_engine': 'InnoDB',
 
         'mysql_charset': 'utf8'},
 
    )
 
    repository_id = Column('repository_id', String(250), primary_key=True)
 
    repository_path = Column('repository_path', Text)
 
    version = Column('version', Integer)
 

	
rhodecode/lib/vcs/utils/lazy.py
Show inline comments
 
@@ -40,7 +40,6 @@ class ThreadLocalLazyProperty(LazyProper
 
            return self
 
        if not hasattr(obj, '__tl_dict__'):
 
            obj.__tl_dict__ = threading.local().__dict__
 

	
 
        result = obj.__tl_dict__[self.__name__] = self._func(obj)
 
        return result
 

	
rhodecode/tests/__init__.py
Show inline comments
 
@@ -179,8 +179,6 @@ def _get_repo_create_params(**custom):
 
    }
 
    defs.update(custom)
 
    if 'repo_name_full' not in custom:
 
        defs.update({'repo_name_full': defs['repo_name']})
 

	
 
    return defs
 

	
 

	
0 comments (0 inline, 0 general)