Browse Source

str, not int

master
Nils 2 years ago
parent
commit
e124e7856d
  1. 2
      engine/start.py

2
engine/start.py

@ -59,7 +59,7 @@ args = parser.parse_args()
#Check for an alternative way to enable the logger.
import os
if args.verbose:
os.environ["LSS_DEBUG"] = 1 #for children programs.
os.environ["LSS_DEBUG"] = "1" #for children programs.
elif not args.verbose and os.getenv("LSS_DEBUG"):
args.verbose = True

Loading…
Cancel
Save