diff --git a/src/formatitko/output_generator.py b/src/formatitko/output_generator.py index 4f3cd24..332bb25 100644 --- a/src/formatitko/output_generator.py +++ b/src/formatitko/output_generator.py @@ -36,7 +36,7 @@ class FormatitkoRecursiveError(Exception): print(*args, file=sys.stderr, **kwargs) def print_filename_recursive(context: Context): - return context.filename +\ + return context.path +\ ((" (included from " + print_filename_recursive(context.parent) + ")") if context.parent else "") eprint(f"Error occured in file {print_filename_recursive(self.context)} in ", end="") line = None