jeremiah-c-leary/logfile-warning-suppressor

View on GitHub
bin/elfws

Summary

Maintainability
Test Coverage
#!/usr/bin/env python

import sys
import os

# Get the path to the executable
executablePath = os.path.dirname(os.path.realpath(__file__))

# Import program modules
sys.path.append(os.path.join(executablePath, '..'))

from elfws.__main__ import main

main()