0

I am having a problem when writing to a config file. I have two Python scripts that read and write to the same file. the problem is when I write to it from one script it overwrites the content from the other script.

Here is my code:

authfile = "Users/.ahs" # .ahs is a hidden file
config = ConfigParser.ConfigParser()
tmpfile = open(authfile, "w+")
config.add_section(s)
config.set(s, k, t)
config.write(tmpfile)
tmpfile.close()
jonrsharpe
  • 107,083
  • 22
  • 201
  • 376
virus.cmd
  • 325
  • 4
  • 12

1 Answers1

1

w+ truncates the file when it opens, are you sure you didn't mean a or a+?

See Confused by python file mode "w+"

Community
  • 1
  • 1
tzaman
  • 44,771
  • 11
  • 88
  • 112