diff options
Diffstat (limited to 'geneticone.py')
-rwxr-xr-x | geneticone.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/geneticone.py b/geneticone.py index 9abefd3..1c60e5f 100755 --- a/geneticone.py +++ b/geneticone.py @@ -2,8 +2,8 @@ # -*- coding: utf-8 -*- # -# File: geneticone.py -# This file is part of the Genetic/One-Project, a graphical portage-frontend. +# File: portato.py +# This file is part of the Portato-Project, a graphical portage-frontend. # # Copyright (C) 2006 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of @@ -12,12 +12,12 @@ # # Written by René 'Necoro' Neumann <necoro@necoro.net> -from geneticone.constants import VERSION +from portato.constants import VERSION import sys if __name__ == "__main__": if len(sys.argv) > 1 and sys.argv[1] in ("--help","--version","-h","-v"): - print """Genetic/One %s + print """Portato %s Copyright (C) 2006 René 'Necoro' Neumann This is free software. You may redistribute copies of it under the terms of the GNU General Public License <http://www.gnu.org/licenses/gpl.html>. @@ -25,6 +25,6 @@ There is NO WARRANTY, to the extent permitted by law. Written by René 'Necoro' Neumann <necoro@necoro.net>""" % VERSION else: - from geneticone.gui import MainWindow + from portato.gui import MainWindow m = MainWindow() m.main() |