1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!/usr/bin/python3 # vim: shiftwidth=4 tabstop=4 expandtab """A Debug Script for Development Purposes""" from xbackup import script def main(): """main function of this script""" script.run() if __name__ == "__main__": main()