diff options
author | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-06-04 12:36:34 +0200 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-06-04 12:36:34 +0200 |
commit | e5ed07e2b5740346d2a32b3a47204612d8808723 (patch) | |
tree | 900610d9dec72c2a360fb486914e8c0501e560ee | |
parent | 7297b446b87ae26e410b54b7398111a76f1ccbcc (diff) | |
download | zsh-e5ed07e2b5740346d2a32b3a47204612d8808723.tar.gz zsh-e5ed07e2b5740346d2a32b3a47204612d8808723.tar.bz2 zsh-e5ed07e2b5740346d2a32b3a47204612d8808723.zip |
specify python2 in shebang
as suggested in #2382
-rw-r--r-- | plugins/git-prompt/gitstatus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git-prompt/gitstatus.py b/plugins/git-prompt/gitstatus.py index 256841432..c665a9ee1 100644 --- a/plugins/git-prompt/gitstatus.py +++ b/plugins/git-prompt/gitstatus.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*- coding: UTF-8 -*- from subprocess import Popen, PIPE import re |