Commit 21355c4c authored by bescoto's avatar bescoto

Bug fixes relating to the way quoting_enabled was removed


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@352 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent b87422d3
......@@ -133,10 +133,6 @@ changed_settings = []
# The RPath or QuotedRPath of the rdiff-backup-data directory.
rbdir = None
# quoting_enabled is true if we should quote certain characters in
# filenames on the source side (see FilenameMapping for more
# info).
# chars_to_quote is a string whose characters should be quoted. It
# should be true if certain characters in filenames on the source side
# should be escaped (see FilenameMapping for more info).
......
......@@ -627,7 +627,7 @@ def ListAtTime(rp):
def CheckDest(dest_rp):
"""Check the destination directory, """
if Globals.quoting_enabled:
if Globals.chars_to_quote:
dest_rp = FilenameMapping.get_quotedrpath(dest_rp)
if Globals.rbdir is None:
SetConnections.UpdateGlobal('rbdir',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment