#!/usr/bin/python
from scribus import *
if newDocument(PAPER_A4, (10, 10, 10, 10), PORTRAIT, 1, UNIT_MILLIMETERS, NOFACINGPAGES, FIRSTPAGERIGHT,1):
saveDocAs("test.sla")
produces a document 595.28mm by 841.89mm in both the latest svn versions of 1.3.3.12 and 1.3.5
UNITS_POINTS produce the same dimensions, but in points, ie, correct
Owen