Skip to content

Commit

Permalink
修改两处class/引用问题
Browse files Browse the repository at this point in the history
  • Loading branch information
showpy committed Jul 9, 2021
1 parent 333dec2 commit 75eec98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/backup
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import sys,os
os.chdir('/www/server/panel')
sys.path.append("class/")
sys.path.insert(0,"class/")
if sys.version_info[0] == 2:
reload(sys)
sys.setdefaultencoding('utf-8')
Expand Down
2 changes: 1 addition & 1 deletion script/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import sys,os
os.chdir('/www/server/panel')
sys.path.append("class/")
sys.path.insert(0,"class/")
if sys.version_info[0] == 2:
reload(sys)
sys.setdefaultencoding('utf-8')
Expand Down

0 comments on commit 75eec98

Please sign in to comment.