bin/degal
author Tero Marttila <terom@fixme.fi>
Wed, 01 Jul 2009 20:15:08 +0300
changeset 139 d3167c40e7b9
parent 48 20355dd2e61a
permissions -rwxr-xr-x
remove old scripts/cgi-bin stuff. They wouldn't work as such with the new version, and replacements can be written while referring to the history
#!/usr/bin/env python2.5
#
# DeGAL - A pretty simple web image gallery
# Copyright 2008 Tero Marttila
#

# import package
import degal.main

if __name__ == '__main__' :
    import sys
    
    # run entrypoint with command arguments, and exit with returned error code
    sys.exit(degal.main.main(sys.argv))