diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-07-29 18:11:19 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-07-29 18:11:19 +0300 |
commit | af6081e4065f77a7bd1c322adbbebacf6d4d15cf (patch) | |
tree | 51e7d76b70f76ced718629ff2bf7918e2937eedc | |
parent | 1165b10fe4884bbb88a906afeb406c2560f2c032 (diff) | |
download | troggle-af6081e4065f77a7bd1c322adbbebacf6d4d15cf.tar.gz troggle-af6081e4065f77a7bd1c322adbbebacf6d4d15cf.tar.bz2 troggle-af6081e4065f77a7bd1c322adbbebacf6d4d15cf.zip |
better sort order for issues
-rw-r--r-- | parsers/drawings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/drawings.py b/parsers/drawings.py index a814ce2..f34cd70 100644 --- a/parsers/drawings.py +++ b/parsers/drawings.py @@ -117,7 +117,7 @@ def findwalletimage(therionfile, foundpath): scansfile = scansfilel[0] therionfile.scans.add(scansfile) else: - message = f'! Scanned file {scanfilename} mentioned in "{therionfile.dwgpath}" is not actually found in {wallet.walletname}' + message = f'! In {wallet.walletname} scanned file is not actually found {scanfilename} mentioned in "{therionfile.dwgpath}"' wurl = f"/survey_scans/{wallet.walletname}/".replace("#", ":") # print(message) DataIssue.objects.create(parser="Therion", message=message, url=wurl) |