#!/usr/bin/env python # # rdiff-backup -- Mirror files while keeping incremental changes # Version 0.9.0 released June 17, 2002 # Copyright (C) 2001, 2002 Ben Escoto # # This program is licensed under the GNU General Public License (GPL). # Distributions of rdiff-backup usually include a copy of the GPL in a # file called COPYING. The GPL is also available online at # http://www.gnu.org/copyleft/gpl.html. # # See http://www.stanford.edu/~bescoto/rdiff-backup for more # information. Please send mail to me or the mailing list if you find # bugs or have any suggestions. import sys import rdiff_backup.Main if __name__ == "__main__" and not globals().has_key('__no_execute__'): rdiff_backup.Main.Main(sys.argv[1:])