tdf#156260 sw floattable: avoid moving text from the last anchor to its precede
[LibreOffice.git] / bin / update / get_update_channel.py
blob4215f8054b10566f0ae33f7b1db2d0587bf44eaa
1 #!/usr/bin/python3
2 # -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 import sys
10 from config import parse_config
13 def main():
14 if len(sys.argv) < 2:
15 sys.exit(1)
17 update_config = sys.argv[1]
18 config = parse_config(update_config)
19 print(config.channel)
22 if __name__ == "__main__":
23 main()
25 # vim:set shiftwidth=4 softtabstop=4 expandtab: */