pull/654/merge
Kian-Meng Ang 9 months ago committed by GitHub
commit d9da2d1f44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -50,7 +50,7 @@ def entriefy(data):
def load(config): def load(config):
"""Returns a dictonary (key=path, value=weight) loaded from data file.""" """Returns a dictionary (key=path, value=weight) loaded from data file."""
xdg_aj_home = os.path.join( xdg_aj_home = os.path.join(
os.path.expanduser('~'), os.path.expanduser('~'),
'.local', '.local',

@ -194,7 +194,7 @@ def surround_quotes(string):
path outputs with quotes. path outputs with quotes.
""" """
if in_bash() and string: if in_bash() and string:
# Python 2.6 requres field numbers # Python 2.6 requires field numbers
return '"{0}"'.format(string) return '"{0}"'.format(string)
return string return string

Loading…
Cancel
Save