We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a427675 commit ed75eccCopy full SHA for ed75ecc
builder/frameworks/espidf.py
@@ -234,7 +234,7 @@ def get_MD5_hash(phrase):
234
defconfig_mcu = join(ARDUINO_FRMWRK_LIB_DIR,mcu,"defconfig." + mcu)
235
response = request.urlretrieve(sdkconfig_defconfig_url, defconfig_mcu)
236
with open(defconfig_mcu, 'r') as f1, open(sdkconfig_src, 'w') as f2:
237
- f2.write(f1.read())
+ f2.write(f1.read())
238
with open(sdkconfig_src, 'r') as file:
239
file_lines = file.readlines()
240
for line in file_lines:
0 commit comments