Skip to content

Commit

Permalink
Use Qt5, not Qt4.
Browse files Browse the repository at this point in the history
This will not fix issue #92, but is needed for Anki 2.1.
  • Loading branch information
ospalh committed Oct 4, 2016
1 parent 7cf6b41 commit ee7b318
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions play_button.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- mode: Python ; coding: utf-8 -*-
#
# Copyright © 2013–14 Roland Sieker <[email protected]>
# Copyright © 2013–16 Roland Sieker <[email protected]>
#
# License: GNU AGPL, version 3 or later;
# http://www.gnu.org/copyleft/agpl.html
Expand All @@ -12,8 +12,8 @@
import shutil

from BeautifulSoup import BeautifulSoup
from PyQt4.QtCore import QUrl
from PyQt4.QtGui import QDesktopServices
from PyQt5.QtCore import QUrl
from PyQt5.QtGui import QDesktopServices

from anki.hooks import addHook, wrap
from anki.sound import play
Expand Down

0 comments on commit ee7b318

Please sign in to comment.