# HG changeset patch # User Sylvain Thénault # Date 1253254561 -7200 # Node ID f961392e7517440425272feb09ec59ddca33d969 # Parent 6526febd9151d15ad582d320193b559fb8bbedc1 cleanup diff -r 6526febd9151 -r f961392e7517 schemas/workflow.py --- a/schemas/workflow.py Fri Sep 18 07:57:28 2009 +0200 +++ b/schemas/workflow.py Fri Sep 18 08:16:01 2009 +0200 @@ -27,7 +27,6 @@ constraints=[RQLConstraint('O final FALSE')]) initial_state = SubjectRelation('State', cardinality='?*', - # S initial_state O, O state_of S constraints=[RQLConstraint('O state_of S')], description=_('initial state for this workflow')) diff -r 6526febd9151 -r f961392e7517 server/serverctl.py --- 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()