de6e2392c8058f537048be27fe9b78df49b2cdf8
lrnassar
  Wed Jan 26 12:14:40 2022 -0800
Forgot this was python2.7, not python3.

diff --git src/utils/qa/imageComp.py src/utils/qa/imageComp.py
index c9d8792..3ed682d 100755
--- src/utils/qa/imageComp.py
+++ src/utils/qa/imageComp.py
@@ -1,16 +1,16 @@
-#!/usr/bin/python3
+#!/usr/bin/python
 
 import subprocess, os, sys
 from PIL import Image, ImageChops
 from datetime import date
 import getpass
 
 # Notes
 # Currently this only supports a single session comparison
 # But the logic is there to support any number if the
 # Output and comparison functions are updated
 
 ### Functions
 
 def run(*popenargs, **kwargs):
     input = kwargs.pop("input", None)