Skip to content

Commit a8678fb

Browse files
committed
Fix __str__ for the DataspaceConfiguration model #350
Signed-off-by: tdruez <[email protected]>
1 parent eba9c5f commit a8678fb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

dje/models.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -581,9 +581,8 @@ class DataspaceConfiguration(models.Model):
581581
),
582582
)
583583

584-
585-
def __str__(self):
586-
return f"Configuration for {self.dataspace}"
584+
def __str__(self):
585+
return f"{self.dataspace}"
587586

588587

589588
class DataspacedQuerySet(models.QuerySet):

0 commit comments

Comments
 (0)