Просмотр исходного кода

Minor correction: adding a missing angle bracket.

Jason Baker 15 лет назад
Родитель
Сommit
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))