#!/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()