From: Oleg Broytman Date: Sat, 15 Apr 2017 20:17:08 +0000 (+0300) Subject: Fix docstring format X-Git-Tag: 0.1.1~7 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=294acc7e0f294eca2ca6d7f09b5fd63e31ccaf80 Fix docstring format Escape asterisks. --- 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):