]> git.phdru.name Git - sqlconvert.git/blobdiff - scripts/mysql2sql
Refactor: Rename internal `statement` to `_statement`
[sqlconvert.git] / scripts / mysql2sql
index 7e29c2e4f1ced3ede855624cf23cfcfafeb36418..cacbafa13444ea26898b5dcca80b065784fad485 100755 (executable)
@@ -32,8 +32,11 @@ def main(infile, encoding, outfile, output_encoding, use_pbar, quoting_style):
             use_pbar = False
 
     if use_pbar:
-        print("Converting: ", end='', file=sys.stderr)
-    sys.stderr.flush()
+        print("Converting", end='', file=sys.stderr)
+        if infile.name != '<stdin>':
+            print(' ' + infile.name, end='', file=sys.stderr)
+        print(": ", end='', file=sys.stderr)
+        sys.stderr.flush()
 
     if use_pbar:
         pbar = ttyProgressBar(0, size-1)
@@ -57,8 +60,8 @@ def main(infile, encoding, outfile, output_encoding, use_pbar, quoting_style):
             got_directive = is_directive_statement(statement)
             if got_directive:
                 continue
-            for statement in process_statement(statement, quoting_style):
-                print_tokens(statement, outfile=outfile,
+            for _statement in process_statement(statement, quoting_style):
+                print_tokens(_statement, outfile=outfile,
                              encoding=output_encoding)
     tokens = grouper.close()
     if tokens: