Fix default args on single generation script

This commit is contained in:
Orfeas Zafeiris 2018-07-23 17:58:27 +03:00
parent 4c7a8663b5
commit d34326492a

View File

@ -23,7 +23,7 @@ parser.add_argument(
help=
'name and location of where to place file (and forward declaration file)',
metavar='file',
default='sol.hpp')
default=['sol.hpp'])
parser.add_argument('--quiet', help='suppress all output', action='store_true')
args = parser.parse_args()