From: Sebastien Bourdeauducq Date: Sun, 3 Aug 2014 07:52:34 +0000 (+0800) Subject: mibuild/programmer: fix XC3SProg init X-Git-Tag: 24jan2021_ls180~2099^2~333 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=536a220679b4a20cc5258bccecdec7000477639e;p=litex.git mibuild/programmer: fix XC3SProg init --- diff --git a/mibuild/programmer.py b/mibuild/programmer.py index 0de79888..24f2d48f 100644 --- a/mibuild/programmer.py +++ b/mibuild/programmer.py @@ -53,7 +53,7 @@ class XC3SProg(Programmer): needs_flash_proxy = True def __init__(self, cable, flash_proxy_basename=None): - Programmer.__init__(flash_proxy_basename) + Programmer.__init__(self, flash_proxy_basename) self.cable = cable def load_bitstream(self, bitstream_file):