Procházet zdrojové kódy

Minor correction: adding a missing angle bracket.

Jason Baker před 15 roky
rodič
revize
87155c3727
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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))