Aug-26-2019, 10:17 AM
(Aug-26-2019, 05:04 AM)Malt Wrote: sys.argv stores the values in list structure, hence to access it we have use index
################################################################################################### ### Ejecucion ### ################# if (len(sys.argv) > 1): client = Client(sys.argv(1))Modify that to, client = Client(sys.argv[1])
Thank you. Problem solved but now I get another error:

[Image: c0u8gP9.png]