1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: Port scripts to Python 3
This patch is the result of running 2to3 over the Python scripts that are
included in the binary package.
Author: Stuart Prescott <stuart@debian.org>
Bug: #945667
Index: muse/src/utils/muse-find-unused-wavs
===================================================================
--- muse.orig/src/utils/muse-find-unused-wavs
+++ muse/src/utils/muse-find-unused-wavs
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# -*- coding: utf-8 -*-
#=============================================================================
# MusE
Index: muse/src/utils/muse-song-convert.py
===================================================================
--- muse.orig/src/utils/muse-song-convert.py
+++ muse/src/utils/muse-song-convert.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
#=============================================================================
# MusE
# Linux Music Editor
|