Replace exit() by sys.exit()

sys.exit() is considered good to use here.

Change-Id: I365b0dbb50c8f1953b41665ba49145ac6db1b24f
This commit is contained in:
Qiaowei Ren 2016-02-01 16:44:52 +08:00
parent 86441f1e4f
commit 4ba290bac1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ import six
from six.moves import range
from six.moves import urllib
import struct
from sys import exc_info
from sys import exc_info, exit
import zlib
from swift import gettext_ as _
from time import gmtime, strftime, time