diff pylons_app/controllers/summary.py @ 473:6b934c9607e7 celery

Improved testing scenarios. Made test env creator Fixed hg_model error message some other tweeks and fixes Models fixe for uniq email, and removed some extra not needed imports from model main module
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 13 Sep 2010 01:23:58 +0200
parents 3fc3ce53659b
children 5c376ac2d4c9
line wrap: on
line diff
--- a/pylons_app/controllers/summary.py	Sun Sep 12 22:42:03 2010 +0200
+++ b/pylons_app/controllers/summary.py	Mon Sep 13 01:23:58 2010 +0200
@@ -61,7 +61,7 @@
         for name, hash in c.repo_info.branches.items()[:10]:
             c.repo_branches[name] = c.repo_info.get_changeset(hash)
         
-        task = run_task(get_commits_stats,False,c.repo_info.name)
+        task = run_task(get_commits_stats,c.repo_info.name)
         c.ts_min = task.result[0]
         c.ts_max = task.result[1]
         c.commit_data = task.result[2]