Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Update update.py #78

Merged
merged 1 commit into from
Jul 30, 2017
Merged
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
5 changes: 4 additions & 1 deletion lib/core/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@

import os
import sys
import urllib2
try:
import urllib2
except ImportError:
import urllib.request as urllib2
import tarfile

from lib.common.utils import checksum
Expand Down