Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / toolkit / locales / generate_locale_ini.py
blobf00486c07e2629c6bdf0912fe50663894a8cbfea
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 def main(output, locale=None):
7 assert locale is not None
8 output.write("[locale]\n")
9 output.write("locale={}\n".format(locale))