]> git.phdru.name Git - sqlconvert.git/blobdiff - sqlconvert/process_mysql.py
Fix docstring format
[sqlconvert.git] / 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):