• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

allura


コミットメタ情報

リビジョン489d48926e6ced8964b59dd51cc77e302d525131 (tree)
日時2010-04-24 01:46:32
作者Rick Copeland <rcopeland@geek...>
コミッターRick Copeland

ログメッセージ

Fix another problem with the context object

変更サマリ

差分

--- a/pyforge/pyforge/controllers/root.py
+++ b/pyforge/pyforge/controllers/root.py
@@ -77,8 +77,11 @@ class RootController(BaseController):
7777
7878 def _cleanup_request(self):
7979 ming.orm.ormsession.ThreadLocalORMSession.flush_all()
80- for msg in c.queued_messages:
81- g._publish(**msg)
80+ try:
81+ for msg in c.queued_messages:
82+ g._publish(**msg)
83+ except TypeError:
84+ pass
8285 ming.orm.ormsession.ThreadLocalORMSession.close_all()
8386
8487 @expose('pyforge.templates.project_list')