Skip to content

Commit

Permalink
Rewrite shebangs to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
fdobrovolny committed Oct 4, 2016
1 parent a8a54a6 commit 0fefe24
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bindings/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
import sys

from setuptools import setup, find_packages
Expand Down
2 changes: 1 addition & 1 deletion client_admin/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3

from setuptools import setup, find_packages

Expand Down
2 changes: 1 addition & 1 deletion client_lib/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
import sys

from setuptools import setup, find_packages
Expand Down
2 changes: 1 addition & 1 deletion oid_validation/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3

from setuptools import setup, find_packages

Expand Down
2 changes: 1 addition & 1 deletion run-tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3

import logging
import unittest
Expand Down

0 comments on commit 0fefe24

Please sign in to comment.