branch | 3.5 |
changeset 3303 | f961392e7517 |
parent 3301 | 1050fcfdb5cf |
child 3316 | c4c07aab1c39 |
--- a/server/serverctl.py Fri Sep 18 07:57:28 2009 +0200 +++ b/server/serverctl.py Fri Sep 18 08:16:01 2009 +0200 @@ -312,7 +312,7 @@ # postgres specific stuff if driver == 'postgres': # install plpythonu/plpgsql language if not installed by the cube - langs = sys.platform == 'win32' and ('plpgsql',) or ('plpythonu', 'plpgsql') + langs = sys.platform == 'win32' and ('plpgsql',) or ('plpythonu', 'plpgsql') for extlang in langs: helper.create_language(cursor, extlang) cursor.close()