~ubuntu-archive/ubuntu-archive-scripts/trunk

« back to all changes in this revision

Viewing changes to compare-archives

  • Committer: Steve Langasek
  • Date: 2023-03-16 22:01:08 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: steve.langasek@canonical.com-20230316220108-ue64ygwg674hpv5m
Move all shebangs to python3.

The code has all long since been ported to python3, but shebangs were still
pointing at python (python2).  python2 is not installed on
ubuntu-archive-toolbox and shouldn't be.  Currently we have a cowboyed
symlink ~/bin/python -> /usr/bin/python3 to make extra-germinate work, but
now that we've moved off of snakefruit we should update all this code to
point at python3 directly so we can drop the cowboy symlink.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/python3
2
2
 
3
3
from __future__ import print_function
4
4