Merge pull request #409 from zsxh/config-location-trailing-slash

fix(config_dir): add the trailing slash if it's not already there
master
Matthew Zeng 5 years ago committed by GitHub
commit c9485911c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      eaf.py

@ -52,7 +52,7 @@ class EAF(dbus.service.Object):
(emacs_width, emacs_height, proxy_host, proxy_port, proxy_type, config_dir, var_dict_string) = args
emacs_width = int(emacs_width)
emacs_height = int(emacs_height)
eaf_config_dir = os.path.expanduser(config_dir)
eaf_config_dir = os.path.join(os.path.expanduser(config_dir), '')
self.buffer_dict = {}
self.view_dict = {}

Loading…
Cancel
Save