This commit is contained in:
Richard Bronkhorst
2023-06-18 07:06:32 +02:00
parent c2a1f787a2
commit 46f9597e2e
4 changed files with 27 additions and 1 deletions

View File

@@ -39,6 +39,9 @@ class Base:
def update(self, d):
pass
def is_expired(self):
return False
def load(self, d):
self.__dict__ = d

View File

@@ -19,7 +19,7 @@ class Survey(SystemMember):
def path(self):
sector, system, waypoint, signature = self.symbol.split('-')
return f'atlas/{sector}/{system[0:1]}/{system}/{waypoint}-{signature}.{self.ext()}'
return f'atlas/{sector}/{system[0:1]}/{system}/{self.symbol}.{self.ext()}'
def is_expired(self):