diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-03 16:04:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-03 16:04:24 -0500 |
commit | 56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4 (patch) | |
tree | 5c21f10908d00cf9c74d9d386380c42cff73060f /mesonbuild/wrap/wrap.py | |
parent | 55cdba635e61b68658e0d209a58cfb2f1537df93 (diff) | |
parent | ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193 (diff) | |
download | meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.zip meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.tar.gz meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.tar.bz2 |
Merge pull request #1272 from mesonbuild/ignatenko/lint
fix some linting errors
Diffstat (limited to 'mesonbuild/wrap/wrap.py')
-rw-r--r-- | mesonbuild/wrap/wrap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/wrap/wrap.py b/mesonbuild/wrap/wrap.py index dead6fb..d812b4e 100644 --- a/mesonbuild/wrap/wrap.py +++ b/mesonbuild/wrap/wrap.py @@ -133,9 +133,9 @@ class Resolver: is_there = True except subprocess.CalledProcessError: raise RuntimeError('%s is not empty but is not a valid ' - 'git repository, we can not work with it' - ' as a subproject directory.' % ( - checkoutdir)) + 'git repository, we can not work with it' + ' as a subproject directory.' % ( + checkoutdir)) if revno.lower() == 'head': # Failure to do pull is not a fatal error, |