diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-12-10 21:00:26 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2023-12-10 21:00:26 +0100 |
commit | 715982bdf8b7c6bd6fb05221d82a0e1ab905336f (patch) | |
tree | 4e7adfdbe497908e2c19a7992816dd26f2edc751 /attoconf/types.py | |
parent | 4e30c2ce14bb1cfbb0e3f87423db2c6f8d76f911 (diff) | |
download | attobuild-715982bdf8b7c6bd6fb05221d82a0e1ab905336f.tar.gz attobuild-715982bdf8b7c6bd6fb05221d82a0e1ab905336f.tar.bz2 attobuild-715982bdf8b7c6bd6fb05221d82a0e1ab905336f.tar.xz attobuild-715982bdf8b7c6bd6fb05221d82a0e1ab905336f.zip |
Upgrade to Python3.
Mostly using 2to3 automatic converter with some educated guesses on my
part. Produces same TMWA Makefile as py2 attoconf. YMMV.
Diffstat (limited to 'attoconf/types.py')
-rw-r--r-- | attoconf/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/attoconf/types.py b/attoconf/types.py index 8a8d56a..e1af528 100644 --- a/attoconf/types.py +++ b/attoconf/types.py @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with attoconf. If not, see <http://www.gnu.org/licenses/>. -from __future__ import print_function, division, absolute_import + import os from pipes import quote as shell_quote |