X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/8a3a2e994e0e49fb5b610dba0f810b67f0ab229e..bc36c37bdbcdda5fe4f641abbc5514d5f5c5e2a4:/cmdline/apt-mark diff --git a/cmdline/apt-mark b/cmdline/apt-mark index 728f083dc..f6e749eb5 100755 --- a/cmdline/apt-mark +++ b/cmdline/apt-mark @@ -40,7 +40,7 @@ if __name__ == "__main__": if not options.filename: STATE_FILE = apt_pkg.Config.FindDir("Dir::State") + "extended_states" else: - STATE_FILE=options.state_file + STATE_FILE=options.filename # open the statefile if os.path.exists(STATE_FILE): @@ -60,5 +60,6 @@ if __name__ == "__main__": else: outfile.write(str(tagfile.Section)+"\n") # all done, rename the tmpfile - os.rename(outfile.name, STATE_FILE) os.chmod(outfile.name, 0644) + os.rename(outfile.name, STATE_FILE) + os.chmod(STATE_FILE, 0644)