mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
11 lines
166 B
Python
11 lines
166 B
Python
#!/usr/bin/python
|
|
import os
|
|
import time
|
|
|
|
while 1:
|
|
try:
|
|
print(os.environ['DEFAULT_STR'])
|
|
except KeyError:
|
|
print('RAWPython')
|
|
time.sleep(1)
|