#!/usr/local/bin/python2.7
# -*- coding: utf-8 -*-
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation

"""A simple command line tagger"""

import sys

from quodlibet.operon import main
from quodlibet.util import set_win32_unicode_argv


if __name__ == "__main__":
    set_win32_unicode_argv()
    sys.exit(main(sys.argv))
