blob: ad6c50ff7710718841c4d804030f9f38c9e67a80 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From 10c9d3341d64d697f678a64ae707f6bda21565bb Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com>
3Date: Mon, 9 Mar 2020 13:10:37 +0800
4Subject: [PATCH] sqlparse: change shebang to python3
5
6Upstream-Status: Pending
7
8Don't send upstream since upstream still support python2,
9we can only make this change after python2 is offcially
10dropped.
11
12Signed-off-by: Changqing Li <changqing.li@windriver.com>
13---
14 setup.py | 2 +-
15 sqlparse/__main__.py | 2 +-
16 sqlparse/cli.py | 2 +-
17 3 files changed, 3 insertions(+), 3 deletions(-)
18
19diff --git a/setup.py b/setup.py
20index 345d0ce..ce3abc3 100644
21--- a/setup.py
22+++ b/setup.py
23@@ -1,4 +1,4 @@
24-#!/usr/bin/env python
25+#!/usr/bin/env python3
26 # -*- coding: utf-8 -*-
27 #
28 # Copyright (C) 2009-2018 the sqlparse authors and contributors
29diff --git a/sqlparse/__main__.py b/sqlparse/__main__.py
30index 867d75d..dd0c074 100644
31--- a/sqlparse/__main__.py
32+++ b/sqlparse/__main__.py
33@@ -1,4 +1,4 @@
34-#!/usr/bin/env python
35+#!/usr/bin/env python3
36 # -*- coding: utf-8 -*-
37 #
38 # Copyright (C) 2009-2018 the sqlparse authors and contributors
39diff --git a/sqlparse/cli.py b/sqlparse/cli.py
40index 25555a5..8bf050a 100755
41--- a/sqlparse/cli.py
42+++ b/sqlparse/cli.py
43@@ -1,4 +1,4 @@
44-#!/usr/bin/env python
45+#!/usr/bin/env python3
46 # -*- coding: utf-8 -*-
47 #
48 # Copyright (C) 2009-2018 the sqlparse authors and contributors
49--
502.7.4
51