Skip to content

Commit 4da420d

Browse files
committed
fix(pmjs): --interactive flag not recognized
1 parent c213c20 commit 4da420d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pythonmonkey/cli/pmjs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def main():
323323
global requirePath
324324

325325
try:
326-
opts, args = getopt.getopt(sys.argv[1:], "hie:p:r:v", ["help", "eval=", "print=", "require=", "version", "use-strict", "inspect"])
326+
opts, args = getopt.getopt(sys.argv[1:], "hie:p:r:v", ["help", "eval=", "print=", "require=", "version", "interactive", "use-strict", "inspect"])
327327
except getopt.GetoptError as err:
328328
# print help information and exit:
329329
print(err) # will print something like "option -a not recognized"

0 commit comments

Comments
 (0)