diff options
author | hut <hut@hut.pm> | 2017-10-18 00:00:02 +0200 |
---|---|---|
committer | hut <hut@hut.pm> | 2017-10-18 00:00:02 +0200 |
commit | 5375eb89664764a3c17444367d0f561733ca3422 (patch) | |
tree | ad2794f0b4e65842c41b772e04c8ff22a5b7cd64 | |
parent | 5cd41ef9e6e03b23c9d502973ac5e088489f31ba (diff) | |
download | ranger-5375eb89664764a3c17444367d0f561733ca3422.tar.gz |
container.bookmarks: fix bad line continuation
-rw-r--r-- | ranger/container/bookmarks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/container/bookmarks.py b/ranger/container/bookmarks.py index 36b06404..59838c00 100644 --- a/ranger/container/bookmarks.py +++ b/ranger/container/bookmarks.py @@ -29,7 +29,7 @@ class Bookmarks(FileManagerAware): load_pattern = re.compile(r"^[\d\w']:.") def __init__(self, bookmarkfile, bookmarktype=str, autosave=False, - nonpersistent_bookmarks=()): + nonpersistent_bookmarks=()): """Initializes Bookmarks. <bookmarkfile> specifies the path to the file where |