]> git.phdru.name Git - sqlconvert.git/commitdiff
Fix docstring format
authorOleg Broytman <phd@phdru.name>
Sat, 15 Apr 2017 20:17:08 +0000 (23:17 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 15 Apr 2017 20:17:08 +0000 (23:17 +0300)
Escape asterisks.

sqlconvert/process_mysql.py

index 5c2924a1b5e7fe269f353e2c78e77eb0c9e8bd67..34565316e93b62f0f6092df7950fb597ef405f93 100644 (file)
@@ -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):