From 0ad78ef04739a5d5e1618eb8d1ff3fe358f46896 Mon Sep 17 00:00:00 2001 From: Ahmed Kamal Date: Wed, 2 Sep 2015 20:29:13 +0200 Subject: [PATCH] Allow choosing python interpreter through env --- coursera_offline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coursera_offline.py b/coursera_offline.py index 9654f96..a4b7404 100755 --- a/coursera_offline.py +++ b/coursera_offline.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python import argparse import json @@ -412,4 +412,4 @@ def csrfMake(length=24, return ''.join([chars[int(random.random() * len(chars))] for i in range(length)]) if __name__ == "__main__": - main() \ No newline at end of file + main()