summaryrefslogtreecommitdiff
path: root/source/globals.py
blob: 0322bd42b2da2d8240b7143fefa62d63b8c22ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

import sys

def error (msg):
    sys.stderr.write(msg + "\n")

def info (msg):
    sys.stderr.write(msg + "\n")

class Exception:
    def __init__ (self, msg):
        self.msg = msg

# global parameters
productName = 'OpenOffice.org'
#productName = 'Go-OO'