From: Daniel Martí Date: Thu, 13 Aug 2015 17:45:43 +0000 (-0700) Subject: Always end config list items with a comma X-Git-Tag: 0.5.0~210 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=24f6cc604b2e489ef42e447457c283be95b7b7de;p=fdroidserver.git Always end config list items with a comma --- diff --git a/buildserver/config.buildserver.py b/buildserver/config.buildserver.py index 98aa69c1..2d5d575e 100644 --- a/buildserver/config.buildserver.py +++ b/buildserver/config.buildserver.py @@ -1,7 +1,7 @@ sdk_path = "/home/vagrant/android-sdk" ndk_paths = { 'r9b': "/home/vagrant/android-ndk/r9b", - 'r10e': "/home/vagrant/android-ndk/r10e" + 'r10e': "/home/vagrant/android-ndk/r10e", } build_tools = "22.0.1" ant = "ant" diff --git a/examples/config.py b/examples/config.py index 4fcbc4c2..eed07d3c 100644 --- a/examples/config.py +++ b/examples/config.py @@ -12,7 +12,7 @@ # not installed. # ndk_paths = { # 'r9b': "/opt/android-ndk-r9b", -# 'r10e': "/opt/android-ndk" +# 'r10e': "/opt/android-ndk", # } # Build tools version to be used @@ -211,5 +211,5 @@ build_server_always = False # Only the fields listed here are supported, defaults shown char_limits = { 'Summary': 50, - 'Description': 1500 + 'Description': 1500, }