From fbc59fdaaa3ab28109622cc3a620327762bee6b6 Mon Sep 17 00:00:00 2001 From: Howland Owl Date: Tue, 14 Apr 2020 10:29:40 +0300 Subject: [PATCH] Print the actual file that is not importing. - prg not png: when you read png, and it's a prg for c64, this will help! --- editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor.py b/editor.py index 3ca9705..bf96391 100644 --- a/editor.py +++ b/editor.py @@ -140,7 +140,7 @@ def main(args): entry['file'] = i newdata.append(entry) else: - print("dunno what type of file this is...") + print("dunno what type of file this is... {}".format(dirfile)) mysahli.sahli['filedata'] = newdata out = json.dumps(mysahli.sahli, sort_keys=False, indent=4) if args.outfile == '>stdout':