~rbalint/ubuntu-archive-tools/bzr-to-git

« back to all changes in this revision

Viewing changes to copy-proposed-kernel

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2020-05-13 15:55:48 UTC
  • Revision ID: lukasz.zemczak@canonical.com-20200513155548-sr8mi6ltdovjymxo
Switch copy-proposed-kernel to python3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python2.7
 
1
#!/usr/bin/python3
2
2
 
3
3
# Copyright (C) 2011, 2012  Canonical Ltd.
4
4
# Author: Martin Pitt <martin.pitt@canonical.com>
26
26
import argparse
27
27
from contextlib import contextmanager
28
28
from copy import copy
29
 
from StringIO import StringIO
 
29
from io import StringIO
30
30
import sys
31
31
import unittest
32
32