Fixed python2 in settings.py
settings.py was erroneously using python2. Replaced with python3.
This commit is contained in:
parent
35c0e12008
commit
ec3d6eb84a
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/python2
|
||||
#!/usr/bin/python3
|
||||
#
|
||||
# The Qubes OS Project, http://www.qubes-os.org
|
||||
#
|
||||
@ -44,6 +44,7 @@ from PyQt4 import QtCore, QtGui # pylint: disable=import-error
|
||||
|
||||
from . import ui_settingsdlg #pylint: disable=no-name-in-module
|
||||
|
||||
|
||||
# pylint: disable=too-many-instance-attributes
|
||||
class VMSettingsWindow(ui_settingsdlg.Ui_SettingsDialog, QtGui.QDialog):
|
||||
tabs_indices = collections.OrderedDict((
|
||||
|
Loading…
Reference in New Issue
Block a user