Skip to content

Commit 8f5e5a6

Browse files
committed
Correct the printed quantity
1 parent 11cb35b commit 8f5e5a6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

saenopy/gui/orientation/gui_orientation.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,7 @@ def run(self):
320320
output_sub = os.path.join(output_folder, rf"Sigma{str(sigma*parent.scale.value()).zfill(3)}") # subpath to store results
321321
fiber_list, cell_list, out_list = generate_lists(fiber, cell,
322322
output_main=output_sub)
323-
324-
323+
325324

326325
StuctureAnalysisMain(fiber_list=fiber_list,
327326
cell_list=cell_list,
@@ -553,7 +552,7 @@ def measurement_evaluated(self, index, state):
553552

554553
def run_thread(self):
555554
try:
556-
print("compute displacements")
555+
print("compute orientations")
557556
n = len([1 for d in self.data if d[1]])
558557
counter = 0
559558
self.progress_signal.emit(0, n, 0, 1)

0 commit comments

Comments
 (0)