2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-14 16:17:21 +00:00

obscure bug fixed for lines ;*include

This commit is contained in:
Philip Sargent
2022-07-28 15:15:11 +03:00
parent 9a461c31a8
commit 93622b111f
2 changed files with 13 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ class SurvexDirectory(models.Model):
verbose_name_plural = "Survex directories"
def __str__(self):
return "[SurvexDirectory:"+str(self.path) + "-" + str(self.primarysurvexfile.path) + "-" + str(self.cave)+"]"
return "[SurvexDirectory:"+str(self.path) + " | Primary svx:" + str(self.primarysurvexfile.path) +".svx ]"
class SurvexFile(models.Model):