From 294acc7e0f294eca2ca6d7f09b5fd63e31ccaf80 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 15 Apr 2017 23:17:08 +0300 Subject: [PATCH] Fix docstring format Escape asterisks. --- sqlconvert/process_mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlconvert/process_mysql.py b/sqlconvert/process_mysql.py index 5c2924a..3456531 100644 --- a/sqlconvert/process_mysql.py +++ b/sqlconvert/process_mysql.py @@ -29,7 +29,7 @@ def is_directive_statement(statement): def remove_directive_tokens(statement): - """Remove /*! directives */ from the first-level""" + """Remove /\*! directives \*/ from the first-level""" new_tokens = [] for token in statement.tokens: if _is_directive_token(token): -- 2.39.2