|
@@ -4,11 +4,12 @@ import time
|
|
|
# 1. The files and directories to be backed up are
|
|
|
# specified in a list.
|
|
|
# Example on Windows:
|
|
|
-# source = ['"C:\\My Documents"', 'C:\\Code']
|
|
|
+# source = ['"C:\\My Documents"']
|
|
|
# Example on Mac OS X and Linux:
|
|
|
source = ['/Users/swa/notes']
|
|
|
-# Notice we had to use double quotes inside the string
|
|
|
-# for names with spaces in it.
|
|
|
+# Notice we have to use double quotes inside a string
|
|
|
+# for names with spaces in it. We could have also used
|
|
|
+# a raw string by writing [r'C:\My Documents'].
|
|
|
|
|
|
# 2. The backup must be stored in a
|
|
|
# main backup directory
|