tMerge pull request #1838 from maksverver/patch-1 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 8dabe85cf37ac4f4643eae578945cf1612ca8aa2 DIR parent 9182392b5519d0246c5da712236e9e6a5cb5e681 HTML Author: ThomasV <thomasv@electrum.org> Date: Sat, 18 Jun 2016 18:51:49 +0200 Merge pull request #1838 from maksverver/patch-1 Fix typo: $XDG_DATA_HOME should be XDG_DATA_HOME. Diffstat: M setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/setup.py b/setup.py t@@ -24,7 +24,7 @@ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']: if not os.access(opts.root_path + usr_share, os.W_OK) and \ not os.access(opts.root_path, os.W_OK): if 'XDG_DATA_HOME' in os.environ.keys(): - usr_share = os.environ['$XDG_DATA_HOME'] + usr_share = os.environ['XDG_DATA_HOME'] else: usr_share = os.path.expanduser('~/.local/share') data_files += [