Changeset - 986430cde505
[Not reviewed]
beta
0 3 0
Marcin Kuzminski - 14 years ago 2012-05-09 20:53:22
marcin@python-works.com
fixed issue with getting README files from git repositories
3 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -39,6 +39,7 @@ fixes
 
- fixed #434: Error when accessing files or changesets of a git repository 
 
  with submodules
 
- fixed issue with empty APIKEYS for users after registration ref. #438
 
- fixed issue with getting README files from git repositories
 

	
 
1.3.4 (**2012-03-28**)
 
----------------------
rhodecode/controllers/summary.py
Show inline comments
 
@@ -190,7 +190,7 @@ class SummaryController(BaseRepoControll
 
            readme_file = None
 
            log.debug('Fetching readme file')
 
            try:
 
                cs = repo.get_changeset('tip')
 
                cs = repo.get_changeset() # fetches TIP
 
                renderer = MarkupRenderer()
 
                for f in README_FILES:
 
                    try:
rhodecode/model/db.py
Show inline comments
 
@@ -645,7 +645,7 @@ class Repository(Base, BaseModel):
 
    # SCM PROPERTIES
 
    #==========================================================================
 

	
 
    def get_changeset(self, rev):
 
    def get_changeset(self, rev=None):
 
        return get_changeset_safe(self.scm_instance, rev)
 

	
 
    @property
0 comments (0 inline, 0 general)