Skip to content

Commit f3eecab

Browse files
committed
trivial
1 parent 6f34cff commit f3eecab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

base/base_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def print_log_info(log_content='', debug_level=0, start=-1, end=-1):
4848
log_text = log_text + ' ' + str(content)
4949
log_text = log_text[1:]
5050

51-
print(get_log_header(mod_name, debug_level, start, end), log_text)
51+
print(get_log_header(mod_name, debug_level, start, end) + ' ' + log_text)
5252

5353

5454
def check_readlib():

manage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
if __name__ == "__main__":
66
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
7-
print('[MANAGE] manage path:', os.path.abspath(__file__))
7+
print('[MANAGE] manage path: ' + os.path.abspath(__file__))
88

99
try:
1010
from django.core.management import execute_from_command_line

mdict/static/mdict/js/mdict_base.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ function change_modal(){
710710
$("#right-container").hide();
711711
$("#modal-container-config .modal-content").append($("#config-content"));
712712
$("#modal-container-history .modal-body").append($("#history-content"));
713-
if($("html").attr("data-is-simple")==0){
713+
if($("html").attr("data-is-simple")!=1){
714714
$("#modal-mdict").show();
715715
$("#modal-config").show();
716716
}

0 commit comments

Comments
 (0)