pulseaudio-equalizer-ladspa / equalizer

Pulseaudio LADSPA Equalizer
GNU General Public License v3.0
138 stars 15 forks source link

Python3 #3

Closed rautesamtr closed 5 years ago

rautesamtr commented 5 years ago

With this PR pulseaudio-equalizer-gtk should be usable with both python 2 and python 3. It changes the shebang of the application and the application start script to /usr/bin/env python so the system selected python gets chosen e.g. python3 on arch linux.

The PR also uses keyword arguments for GObject constructors since the the usage of positional arguments in GObject constructors have been deprecated and cause PyGTKDeprecationWarnings when running the application with python3.

FFY00 commented 5 years ago

Thank you!