Skip to content

Commit cae4cb8

Browse files
committed
Fix: source file not read
1 parent a588231 commit cae4cb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kaleidoscope/processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ def run(self, args: Namespace): # noqa: D102
7575
writer: Writing = self._create_writer(args)
7676

7777
# open the source file
78-
get_logger().debug(f"opening source dataset: {args.target_file}")
79-
source = reader.read(args.target_file)
78+
get_logger().debug(f"opening source dataset: {args.source_file}")
79+
source = reader.read(args.source_file)
8080

8181
# create the processing graph
8282
get_logger().info("starting creating processing graph")

0 commit comments

Comments
 (0)