added file close

sr-frs-rx
Alan Johnston 2 years ago committed by GitHub
parent 029bb170c2
commit 46f77e02ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -578,7 +578,10 @@ if __name__ == "__main__":
try:
command_count += 1
filec = open("/home/pi/CubeSatSim/command_count.txt", "w")
string = filec.write(str(command_count))
command_count_string = str(command_count)
print(command_count_string)
string = filec.write(command_count_string)
filec.close()
except:
if (debug_mode == 1):
print("Can't write command_count file!")

Loading…
Cancel
Save

Powered by TurnKey Linux.