Skip to content

Commit 42cbbec

Browse files
authoredFeb 22, 2024··
fix reach direction change (#170)
1 parent e5799bc commit 42cbbec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎plugin/teksi_wastewater/processing_provider/change_reach_direction.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def processAlgorithm(self, parameters, context, feedback):
7878
# raise Exception: if there is no transaction, complain to the user!
7979
selected_obj_ids = [feature["obj_id"] for feature in iterator]
8080
transaction.executeSql(
81-
"SELECT tww_od.reach_direction_change('{{{obj_ids}}}');".format(
81+
"SELECT tww_app.reach_direction_change('{{{obj_ids}}}');".format(
8282
obj_ids=",".join(selected_obj_ids)
8383
),
8484
True,

0 commit comments

Comments
 (0)
Please sign in to comment.