]> git.phdru.name Git - sqlconvert.git/commitdiff
Fix mysql2sql: args.pg
authorOleg Broytman <phd@phdru.name>
Sun, 19 Mar 2017 16:19:00 +0000 (19:19 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 19 Mar 2017 16:19:00 +0000 (19:19 +0300)
scripts/mysql2sql

index 3766c971ba0499fb49c9ef6d54273a7a314673a2..e4f2e4bbf9fa0eb9c84c1759fcd41cc79b13cfb0 100755 (executable)
@@ -90,7 +90,7 @@ if __name__ == '__main__':
     parser.add_argument('output_file', nargs='?', help='output file name')
     args = parser.parse_args()
 
-    if int(args.mysql) + int(args.postgres) + int(args.sqlite) > 1:
+    if int(args.mysql) + int(args.pg) + int(args.sqlite) > 1:
         print("Error: options -m/-p/-s are mutually incompatible, "
               "use only one of them",
               file=sys.stderr)
@@ -143,7 +143,7 @@ if __name__ == '__main__':
 
     if args.mysql:
         quoting_style = 'mysql'
-    elif args.postgres:
+    elif args.pg:
         quoting_style = 'postgres'
     else:
         quoting_style = 'sqlite'