Skip to content

Commit

Permalink
Merge pull request spesmilo#3 from junderw/cash-fix-indent
Browse files Browse the repository at this point in the history
Replace tab with 8 spaces not 4 spaces
  • Loading branch information
fyookball committed Aug 3, 2017
2 parents cd6435c + c6edbf1 commit b20b2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/simple_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ def electrum_path(self):
self.print_error("Making directory {} and copying wallets".format(path))
os.makedirs(path)
electrum_path = user_dir(True)
if self.get('testnet'):
if self.get('testnet'):
electrum_path = os.path.join(electrum_path, 'testnet')
elif self.get('nolnet'):
electrum_path = os.path.join(electrum_path, 'nolnet')
if os.path.exists(electrum_path):
# Deliberately don't copy config
shutil.copytree(os.path.join(electrum_path, 'wallets'), os.path.join(path, 'wallets'))
self.print_error("electron-cash directory", path)
self.print_error("electron-cash directory", path)
return path

def fixup_config_keys(self, config, keypairs):
Expand Down

0 comments on commit b20b2c1

Please sign in to comment.