#! /usr/bin/python3
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2016 Adrian Perez <aperez@igalia.com>
#
# Distributed under terms of the GPLv3 license.

def adjust_import_path():
    import sys
    sys.path.insert(0, "/usr/share/revolt/py")


if __name__ == "__main__":
    adjust_import_path()
    from revolt import main
    main(__file__)
