server/src/manage.py
author rougeronj
Thu, 17 Sep 2015 18:19:30 +0200
changeset 151 bbf1f87578fe
parent 5 c62ba43e9841
permissions -rwxr-xr-x
fix style bug in IE: make the scroll bar overlay the content so it doesn't increase the width of the container and ruin the all the layout

#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "remieplt.settings.dev")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)