swr/rast: gen_backends.py remove extraneous semicolon
authorTim Rowley <timothy.o.rowley@intel.com>
Mon, 26 Jun 2017 17:40:45 +0000 (12:40 -0500)
committerTim Rowley <timothy.o.rowley@intel.com>
Fri, 30 Jun 2017 18:26:19 +0000 (13:26 -0500)
Reviewed-by: Bruce Cherniak <bruce.cherniak at intel.com>
src/gallium/drivers/swr/rasterizer/codegen/gen_backends.py

index 3f0790c8dae1a6d9eecda6e9de5c4ace26c24087..2fc91d1f9158da8a2823462cd21c4da8b1acee07 100644 (file)
@@ -40,7 +40,8 @@ def main(args=sys.argv[1:]):
     parser.add_argument('--hpp', help='Generate hpp file', action='store_true', default=False)
     parser.add_argument('--cmake', help='Generate cmake file', action='store_true', default=False)
 
-    args = parser.parse_args(args);
+    args = parser.parse_args(args)
+
 
     class backendStrs :
         def __init__(self) :