aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts
diff options
context:
space:
mode:
authorMike Sinkovsky <msink@permonline.ru>2017-01-09 15:14:24 +0500
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-11 12:33:27 -0500
commit5b626ab4cb8ee6024394945e716e3a5426216260 (patch)
tree4db6f656f69906e9f00c97a938a8da17548b7282 /mesonbuild/scripts
parent0dd1e338989c4d0517eab8efbfa008e0e3e841a9 (diff)
downloadmeson-5b626ab4cb8ee6024394945e716e3a5426216260.zip
meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.gz
meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.bz2
style: [E1**] Indentation
Diffstat (limited to 'mesonbuild/scripts')
-rw-r--r--mesonbuild/scripts/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/scripts/__init__.py b/mesonbuild/scripts/__init__.py
index b2f2258..af6bedc 100644
--- a/mesonbuild/scripts/__init__.py
+++ b/mesonbuild/scripts/__init__.py
@@ -14,7 +14,7 @@
def destdir_join(d1, d2):
# c:\destdir + c:\prefix must produce c:\destdir\prefix
- if len(d1) > 1 and d1[1] == ':' and \
- len(d2) > 1 and d2[1] == ':':
+ if len(d1) > 1 and d1[1] == ':' \
+ and len(d2) > 1 and d2[1] == ':':
return d1 + d2[2:]
return d1 + d2