Changeset - eda96fb85ba7
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-09-28 23:08:43
marcin@python-works.com
dohh !! fixed EmptyCHangeset for new vcs
1 file changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pylons_app/lib/utils.py
Show inline comments
 
@@ -224,14 +224,16 @@ class EmptyChangeset(BaseChangeset):
 
    @LazyProperty
 
    def raw_id(self):
 
        """
 
        Returns raw string identifing this changeset, useful for web
 
        representation.
 
        """
 
        return '0' * 12
 
        return '0' * 40
 

	
 
    def short_id(self):
 
        self.raw_id[:12]
 

	
 
def repo2db_mapper(initial_repo_list, remove_obsolete=False):
 
    """
 
    maps all found repositories into db
 
    """
 
    from pylons_app.model.repo_model import RepoModel
0 comments (0 inline, 0 general)