Skip to content

Commit 0216c35

Browse files
committed
remove some debug output
1 parent 78a7af4 commit 0216c35

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pysimplesql/pysimplesql.py

-1
Original file line numberDiff line numberDiff line change
@@ -2890,7 +2890,6 @@ def duplicate_record(self, q_obj:Query, cascade:bool) -> ResultSet:
28902890
## (other than the name of the primary key). The trick is to create a temporary table
28912891
## using the "CREATE TABLE AS" syntax.
28922892
description = self.quote_value(f"Copy of {q_obj.get_description_for_pk(q_obj.get_current_pk())}")
2893-
print(description)
28942893
table = self.quote_table(q_obj.table)
28952894
pk_column = self.quote_column(q_obj.pk_column)
28962895
description_column = self.quote_column(q_obj.description_column)

0 commit comments

Comments
 (0)