When I invoke mcomm with "mcomm" at the command line, it calls the
following script:

#!/usr/bin/python3
""" Launch mcomm
"""
import subprocess
import sys
subprocess.call(["python3", "/usr/share/mcomm/mcomm.py", *sys.argv[1:]])

...which yields the following error message:

 File "/usr/bin/mcomm", line 6
    subprocess.call(["python3", "/usr/share/mcomm/mcomm.py", *sys.argv[1:]])
                                                            ^
SyntaxError: can use starred expression only as assignment target

Sorry to bother everyone with this, I'm sure it is something simple
about python. My python3 is 3.4.3

Reply via email to