Move int cast to helper try block

This commit is contained in:
2019-12-25 19:31:51 -05:00
parent 1f77b382ef
commit b1c19a21ba
2 changed files with 4 additions and 2 deletions

View File

@ -1331,7 +1331,7 @@ class API_VM_Console(Resource):
"""
return api_helper.vm_console(
vm,
int(reqargs.get('lines', None))
reqargs.get('lines', None)
)
api.add_resource(API_VM_Console, '/vm/<vm>/console')