Skip to content
This repository was archived by the owner on Mar 31, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion clint/arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
from __future__ import absolute_import

import os
from sys import argv
try:
from sys import argv
except ImportError:
# Can happen when executing inside LLDB context
import sys
sys.argv = []

try:
from collections import OrderedDict
Expand Down