diff --git a/code/modules/DetectiveWork/detective_work.dm b/code/modules/DetectiveWork/detective_work.dm
index fc6cf153156..918a43d1c90 100644
--- a/code/modules/DetectiveWork/detective_work.dm
+++ b/code/modules/DetectiveWork/detective_work.dm
@@ -259,10 +259,10 @@ obj/machinery/computer/forensic_scanning
if("databaseprint") //Printing from the "files" database.
if(files)
var/obj/item/weapon/paper/P = new(loc)
- P.name = "\improper Database File (Dossier [files.Find(href_list["identifier"])])"
+ var/list/dossier = files[href_list["identifier"]]
+ P.name = "\improper Database File ([dossier[2]])"
P.overlays += "paper_words"
P.info = "Criminal Evidence Database
"
- var/list/dossier = files[href_list["identifier"]]
P.info += "Consolidated data points: [dossier[2]]
"
var/print_string = "Fingerprints: Print not complete!
"
if(stringpercent(dossier[1]) <= FINGERPRINT_COMPLETE)