summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/apt/apt-native.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/apt/apt-native.inc')
-rw-r--r--meta/recipes-devtools/apt/apt-native.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/apt/apt-native.inc b/meta/recipes-devtools/apt/apt-native.inc
index 27cc9ff0b5..74db4a0a13 100644
--- a/meta/recipes-devtools/apt/apt-native.inc
+++ b/meta/recipes-devtools/apt/apt-native.inc
@@ -30,7 +30,7 @@ python do_install_config () {
30 30
31 outpath = oe.path.join(outdir, 'apt.conf.sample') 31 outpath = oe.path.join(outdir, 'apt.conf.sample')
32 if not os.path.exists(outpath): 32 if not os.path.exists(outpath):
33 outfile = file(outpath, 'w') 33 outfile = open(outpath, 'w')
34 outfile.write(data) 34 outfile.write(data)
35 outfile.close() 35 outfile.close()
36} 36}