diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-31 14:33:42 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-31 16:28:15 +0200 |
commit | b55235dfbde37661d24881eb989ee651ed9289c5 (patch) | |
tree | 5478d7a8483b30ec38338a0482bb52f8941b746c /mesonbuild/dependencies.py | |
parent | 504f974204c79a08d17224c2a91582a47c64fe68 (diff) | |
download | meson-b55235dfbde37661d24881eb989ee651ed9289c5.zip meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.gz meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.bz2 |
Fix space before :.
Diffstat (limited to 'mesonbuild/dependencies.py')
-rw-r--r-- | mesonbuild/dependencies.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mesonbuild/dependencies.py b/mesonbuild/dependencies.py index 9d6fb6c..c0e8851 100644 --- a/mesonbuild/dependencies.py +++ b/mesonbuild/dependencies.py @@ -529,7 +529,7 @@ class BoostDependency(Dependency): # Some boost libraries have different names for # their sources and libraries. This dict maps # between the two. - name2lib = {'test' : 'unit_test_framework'} + name2lib = {'test': 'unit_test_framework'} def __init__(self, environment, kwargs): Dependency.__init__(self, 'boost') @@ -1458,9 +1458,9 @@ packages = {'boost': BoostDependency, 'qt4': Qt4Dependency, 'gnustep': GnuStepDependency, 'appleframeworks': AppleFrameworks, - 'wxwidgets' : WxDependency, - 'sdl2' : SDL2Dependency, - 'gl' : GLDependency, - 'threads' : ThreadDependency, - 'python3' : Python3Dependency, + 'wxwidgets': WxDependency, + 'sdl2': SDL2Dependency, + 'gl': GLDependency, + 'threads': ThreadDependency, + 'python3': Python3Dependency, } |