Explorar el Código

fix internationalization for string

Arthur Hanson hace 1 año
padre
commit
77d0e9032a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      netbox/core/models/jobs.py

+ 1 - 1
netbox/core/models/jobs.py

@@ -214,7 +214,7 @@ class Job(models.Model):
                 management commands only.
         """
         if schedule_at and immediate:
-            raise ValueError("enqueue() cannot be called with values for both schedule_at and immediate.")
+            raise ValueError(_("enqueue() cannot be called with values for both schedule_at and immediate."))
 
         if instance:
             object_type = ObjectType.objects.get_for_model(instance, for_concrete_model=False)