diff -r c7c4775a5619 -r 7b88d12b4ee2 server/serverctl.py --- a/server/serverctl.py Thu Sep 17 15:52:46 2009 +0200 +++ b/server/serverctl.py Tue Sep 22 12:11:12 2009 +0200 @@ -312,7 +312,7 @@ # postgres specific stuff if driver == 'postgres': # install plpythonu/plpgsql language if not installed by the cube - langs = ('plpgsql',) if sys.platform == 'win32' else ('plpythonu', 'plpgsql') + langs = sys.platform == 'win32' and ('plpgsql',) or ('plpythonu', 'plpgsql') for extlang in langs: helper.create_language(cursor, extlang) cursor.close()