summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/Globals.py
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-03 23:18:35 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-01-03 23:18:35 +0000
commit247258bb5cd325c311188dd65b3f351e64bc5454 (patch)
tree4dfb10c0835303245482954eaa9abefe7b54b495 /rdiff-backup/rdiff_backup/Globals.py
parenta0d43616f7f51127bed7a8dd3866fa6d22b8c8b5 (diff)
downloadrdiff-backup-247258bb5cd325c311188dd65b3f351e64bc5454.tar.gz
New option: --use-compatible-timestamps, which causes rdiff-backup to use - asthe hour/minute/second separator instead of :. Enabled by default on systems
which require : to be escaped. (Oliver Mulatz) git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@996 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/Globals.py')
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index ffccc27..ab26abf 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -159,6 +159,11 @@ rbdir = None
chars_to_quote = None
quoting_char = ';'
+# If true, the timestamps use the following format: "2008-09-01T04-49-04-07-00"
+# (instead of "2008-09-01T04:49:04-07:00"). This creates timestamps which
+# don't need to be escaped on Windows.
+use_compatible_timestamps = 0
+
# If true, emit output intended to be easily readable by a
# computer. False means output is intended for humans.
parsable_output = None