Skip to content

Commit

Permalink
english version
Browse files Browse the repository at this point in the history
  • Loading branch information
mingzhenliu committed Nov 20, 2019
1 parent 3c1becb commit 3aabd33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/comm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ def pullSourceExtract(gitComm,fileName):
else:
info1 = "n"
if sys.version_info.major == 2:
info1 = raw_input("{}.zip already exists. Download again or not?[y/n]:".format(fileName))
info1 = raw_input("{}.zip has been unzipped. Whether to re-unzip?[y/n]:".format(fileName))
else:
info1 = input("{}.zip already exists. Download again or not?[y/n]:".format(fileName))
info1 = input("{}.zip has been unzipped. Whether to re-unzip?[y/n]:".format(fileName))
if info1 == "y" or info1 == "Y":
doCmd("rm -rf {}".format(fileName))
doCmd("unzip -o {}.zip".format(fileName))
Expand Down

0 comments on commit 3aabd33

Please sign in to comment.