mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
display message if icons_rc is not found
This commit is contained in:
parent
1fc23c6fe1
commit
8a7cb32432
2 changed files with 6 additions and 2 deletions
|
@ -7,7 +7,12 @@ from PyQt4.QtCore import *
|
|||
import PyQt4.QtCore as QtCore
|
||||
import PyQt4.QtGui as QtGui
|
||||
|
||||
import icons_rc
|
||||
try:
|
||||
import icons_rc
|
||||
except:
|
||||
print "could not import icons_rp.py"
|
||||
print "generate it with: 'pyrcc4 icons.qrc -o icons_rc.py'"
|
||||
sys.exit(1)
|
||||
|
||||
from wallet import format_satoshis
|
||||
from decimal import Decimal
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
# pyrcc4 icons.qrc -o icons_rc.py
|
||||
# python setup.py sdist --format=zip,gztar
|
||||
|
||||
from distutils.core import setup
|
||||
|
|
Loading…
Add table
Reference in a new issue