1 files changed, 1 insertions(+), 9 deletions(-)

M music_collection_sync.py
M music_collection_sync.py +1 -9
@@ 5,7 5,6 @@ This script synchronizes a music collect
 for Details see README
 
 This software is licensed under the GNU GPLv3 without any warranty as is with ABSOLUTELY NO WARRANTY.
-If you find the script useful and would like to donate: UniCredit Bank Austria AG, Gregor Horvath, IBAN: AT47 1100 0014 1436 2200, BIC: BKAUATWW
 """
 
 import os

          
@@ 26,9 25,6 @@ parser.add_option("-f", "--format", dest
 parser.add_option("-w", "--target_win", action="store_true", dest="win",
                   help="convert the filenames to Windows convention (for example if you copy to a FAT Partition)")
 
-parser.add_option("-d", "--no_donation", action="store_true", dest="nodonation", default=False,
-                  help="suppress the donation message.")
-
 parser.add_option("-s", "--followlinks", action="store_true", dest="followlinks", default=False,
                   help="By default the script will not walk down into symbolic links that resolve to directories. " \
                   "Set followlinks to visit directories pointed to by symlinks, on systems that support them.")

          
@@ 61,7 57,7 @@ if args[0] == args[1]:
     parser.error("source and target path must not be the same")
 
 if options.win:
-    illegal_characters = '?[],\=+<>:;"*|^'
+    illegal_characters = r'?[],\=+<>:;"*|^'
 else:
     illegal_characters = ''
 

          
@@ 281,7 277,3 @@ if __name__ == '__main__':
     end = time.time()
 
     log_elapsed_time(start, end)
-
-    if not options.nodonation:
-            print("\nIf you find the script useful and would like to donate: \n" \
-                  "UniCredit Bank Austria AG, Gregor Horvath, IBAN: AT47 1100 0014 1436 2200, BIC: BKAUATWW")