try to detect data/style.css otherwise fallback to arch-indep data dir.

This commit is contained in:
Amir Taaki 2012-07-08 11:13:11 +01:00
parent c10bacca28
commit 0b0a6f3657
1 changed files with 3 additions and 3 deletions

View File

@ -37,9 +37,9 @@ def resize_line_edit_width(line_edit, text_input):
line_edit.setMinimumWidth(metrics.width(text_input))
def cd_data_dir():
try:
data_dir = os.environ["ELECTRUM_DATA_PATH"]
except KeyError:
if os.path.exists(os.path.join("data", "style.css")):
data_dir = os.path.join(".", "data")
else:
data_dir = appdata_dir()
QDir.setCurrent(data_dir)