3c3c440296
This reverts commit2ce5adba82, reversing changes made tobf807c2519.
22 lines
472 B
Python
Executable File
22 lines
472 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
import os, sys, inspect
|
|
fenrirPath = os.path.dirname(os.path.realpath(os.path.abspath(inspect.getfile(inspect.currentframe()))))
|
|
|
|
if not fenrirPath in sys.path:
|
|
sys.path.append(fenrirPath)
|
|
|
|
from core import fenrirManager
|
|
|
|
def main():
|
|
app = fenrirManager.fenrirManager()
|
|
app.proceed()
|
|
del app
|
|
|
|
if __name__ == "__main__":
|
|
main()
|