瀏覽代碼

Minor correction: adding a missing angle bracket.

Jason Baker 15 年之前
父節點
當前提交
87155c3727
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      celery/datastructures.py

+ 1 - 1
celery/datastructures.py

@@ -73,7 +73,7 @@ class ExceptionInfo(object):
         return str(self.exception)
 
     def __repr__(self):
-        return "<%s.%s: %s" % (
+        return "<%s.%s: %s>" % (
                 self.__class__.__module__,
                 self.__class__.__name__,
                 str(self.exception))