1

moving all yomichan assets into a single subdirectory

This commit is contained in:
Alex Yatskov 2011-11-05 09:54:57 -07:00
parent 9ad64af0f4
commit 8735daf1a2
13 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
import sys
from PyQt4 import QtGui
from yomichan.lang import japanese
from yomichan.core.reader import MainWindowReader
from yomichan.reader import MainWindowReader
filename = sys.argv[1] if len(sys.argv) >= 2 else None

View File

@ -17,10 +17,10 @@
from PyQt4 import QtGui, QtCore
from yomichan import anki_host
from yomichan.lang import japanese
from yomichan.core import anki_host
from yomichan.core.preference_data import Preferences
from yomichan.core.reader import MainWindowReader
from yomichan.preference_data import Preferences
from yomichan.reader import MainWindowReader
class YomichanPlugin: