blob: c7afcfdb35f5d64a5936f869d1b530d39a832b06 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python2
# -*- coding: utf-8-*-
# This file exists for backwards compatibility with older versions of jasper.
# It might be removed in future versions.
import os
import runpy
script_path = os.path.join(os.path.dirname(__file__), os.pardir, "client", "main.py")
runpy.run_path(script_path, run_name="__main__")
|