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 Sep 30, 2016
1 parent dae7f3b commit 69f8c64
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3

from mock import Mock
from pulp.bindings.responses import STATE_FINISHED
Expand Down
2 changes: 1 addition & 1 deletion playpen/errata_applicable/display_results.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3

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

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

import argparse
import os
Expand Down
2 changes: 1 addition & 1 deletion plugins/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 pulp-dev.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3

import optparse
import os
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

import os
import subprocess
Expand Down

0 comments on commit 69f8c64

Please sign in to comment.