From 1caa637bb406c17f7bdf7236ab5576d4f2be9f30 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Aug 24 2011 18:58:30 +0000 Subject: Update `centos-web.cgi' inside `CentOS-Web' application: - Rename package from `Xhtml' to `Web'. - Rename module from `output' to `xhtml' --- diff --git a/Scripts/CentOS-Web/centos-web.cgi b/Scripts/CentOS-Web/centos-web.cgi index 9ce0e79..9bdd60c 100755 --- a/Scripts/CentOS-Web/centos-web.cgi +++ b/Scripts/CentOS-Web/centos-web.cgi @@ -1,8 +1,8 @@ #!/usr/bin/python -from Xhtml import output +from Web import xhtml def main(): - output.main() + xhtml.main() if __name__ == '__main__': main()