From: Michael Vogt Date: Wed, 14 Mar 2007 16:11:31 +0000 (+0100) Subject: cmdline/apt-mark: fix chmod()/rename() ordering X-Git-Tag: 0.7.21~284^2~1^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/54eda6ae969cd66d06fe82f7175f753a74d2b7dc cmdline/apt-mark: fix chmod()/rename() ordering --- diff --git a/cmdline/apt-mark b/cmdline/apt-mark index 533ed8715..dadc01366 100755 --- a/cmdline/apt-mark +++ b/cmdline/apt-mark @@ -60,4 +60,5 @@ if __name__ == "__main__": else: outfile.write(str(tagfile.Section)+"\n") # all done, rename the tmpfile + os.chmod(outfile.name, 0644) os.rename(outfile.name, STATE_FILE)