Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCJY authored and jchen-sc committed Feb 24, 2021
1 parent f03bef5 commit ec62e96
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/android/build_incremental_dexmanifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@

import hashlib
import os
from Queue import Queue
try:
from Queue import Queue
except ImportError:
import queue as Queue
import shutil
import sys
import tempfile
Expand Down

0 comments on commit ec62e96

Please sign in to comment.