summaryrefslogtreecommitdiff
path: root/debian/patches/0110-remove_stale_files.patch
diff options
context:
space:
mode:
authorLászló Böszörményi <gcs@debian.org>2018-11-09 18:47:31 +0000
committerLászló Böszörményi <gcs@debian.org>2018-11-09 18:47:31 +0000
commited3f7ef9397c54c49bde914e0cda29662b39c29c (patch)
tree94c0e535707041d628a517352c7f69fe9da99372 /debian/patches/0110-remove_stale_files.patch
parente3984312068f8e535ca5066f37a72317ddaf1b61 (diff)
parent074c5e3f96026aaa37153dc7b7a17c64be473fba (diff)
Merge branch 'fix-893740-python3-compatibility' into 'master'
d/p/0110-remove_stale_files.patch: update for py3 compatibility (Closes: #893740) See merge request debian/scons!1
Diffstat (limited to 'debian/patches/0110-remove_stale_files.patch')
-rw-r--r--debian/patches/0110-remove_stale_files.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/patches/0110-remove_stale_files.patch b/debian/patches/0110-remove_stale_files.patch
index b3a94d2..298d47c 100644
--- a/debian/patches/0110-remove_stale_files.patch
+++ b/debian/patches/0110-remove_stale_files.patch
@@ -13,7 +13,7 @@ Index: trunk/engine/SCons/Script/Main.py
+ # Remove temporary files left by SCons
+ if options.clean:
-+ if os.environ.has_key('DH_INTERNAL_OPTIONS'):
++ if 'DH_INTERNAL_OPTIONS' in os.environ:
+ import shutil
+ for path in ('.sconsign.dblite', '.sconf_temp'):
+ try: