]> TLD Linux GIT Repositories - tld-builder.git/blob - PLD_Builder/status.py
- from https://github.com/pld-linux/pld-builder.new
[tld-builder.git] / PLD_Builder / status.py
1 # vi: encoding=utf-8 ts=8 sts=4 sw=4 et
2
3 state = []
4 email = ""
5 admin = ""
6 builder_list = ""
7
8 def push(s):
9     state.append(s)
10
11 def pop():
12     state.pop()
13
14 def get():
15     return "%s" % state