#!/usr/bin/env python
# run.py
# Copyright (C) 2010 Julien Miotte <miotte.julien@gmail.com>
#
# This module is part of gitbuster and is released under the GPLv3
# License: http://www.gnu.org/licenses/gpl-3.0.txt
#

import warnings

from gitbuster import main

if __name__ == "__main__":
    warnings.simplefilter("always")
    main()
