Changeset - 3b0255d936c8
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2012-02-01 23:31:16
marcin@python-works.com
fixed exception in rhodecode_crawler
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/tests/rhodecode_crawler.py
Show inline comments
 
@@ -103,6 +103,7 @@ def test_files_walk(limit=100):
 
    repo = vcs.get_repo(jn(PROJECT_PATH, PROJECT))
 

	
 
    from rhodecode.lib.compat import OrderedSet
 
    from vcs.exceptions import RepositoryError
 

	
 
    paths_ = OrderedSet([''])
 
    try:
 
@@ -117,7 +118,7 @@ def test_files_walk(limit=100):
 
            for f in files:
 
                paths_.add(f.path)
 

	
 
    except vcs.exception.RepositoryError, e:
 
    except RepositoryError, e:
 
        pass
 

	
 
    cnt = 0
0 comments (0 inline, 0 general)