1
0
mirror of https://github.com/wting/autojump synced 2025-06-13 12:54:07 +00:00
This commit is contained in:
Kian-Meng Ang 2025-03-07 11:35:49 -05:00 committed by GitHub
commit 00e21cbb7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ def entriefy(data):
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(
os.path.expanduser('~'),
'.local',

View File

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