diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-16 13:51:19 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-16 13:51:19 +0200 |
commit | ab86ee919a3672b5e881cde3898d545664b8d836 (patch) | |
tree | 47b2c11565f790bfbf5392362116267fa316778c /voctocore/lib | |
parent | 53ba467fd081793508a51650b5ef85572953dadb (diff) |
Add shebang header
Diffstat (limited to 'voctocore/lib')
-rw-r--r-- | voctocore/lib/args.py | 1 | ||||
-rw-r--r-- | voctocore/lib/config.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/voctocore/lib/args.py b/voctocore/lib/args.py index 1e416f8..b7575ff 100644 --- a/voctocore/lib/args.py +++ b/voctocore/lib/args.py @@ -1,3 +1,4 @@ +#!/usr/bin/python3 import argparse __all__ = ['Args'] diff --git a/voctocore/lib/config.py b/voctocore/lib/config.py index fdd2360..9201f3e 100644 --- a/voctocore/lib/config.py +++ b/voctocore/lib/config.py @@ -1,3 +1,4 @@ +#!/usr/bin/python3 import os.path from configparser import SafeConfigParser from lib.args import Args |