Skip to content

Commit

Permalink
[FIX] typo in oca_projects.py
Browse files Browse the repository at this point in the history
get_repositories() was not filtering out non-addons repositories as intended
  • Loading branch information
sbidoul committed Nov 13, 2015
1 parent 4716231 commit e1acf24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/oca_projects.py
Expand Up @@ -151,7 +151,7 @@ def get_repositories():
}
gh = login()
all_repos = [repo.name for repo in gh.iter_user_repos('OCA')
if repo not in ignored]
if repo.name not in ignored]
return all_repos

try:
Expand Down

0 comments on commit e1acf24

Please sign in to comment.