Commit 6f08322c authored by Marcello Golfieri's avatar Marcello Golfieri
Browse files

added check to enforce use of python3

parent 31fda1a0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -10,6 +10,8 @@ import sys

from srcc.utils.workgroup import SUWorkgroupManager, SUWorkgroupAPIError

if sys.version_info[0] < 3:
    raise Exception("Must be using Python 3")

WG_CERT = 'certs/xstream.stanford.edu.cert'
WG_CERT_KEY = 'certs/xstream.key'