소스 검색

[Bugfix] space > indent error

Foppe Hemminga 5 년 전
부모
커밋
a621e8496e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cron.py

+ 1 - 1
cron.py

@@ -64,7 +64,7 @@ def update_missing_value(maintainer, player, property, value):
 
 def cron():
     query_zero = """SELECT DISTINCT maintainer FROM maintainer;"""
-     conn = sqlite3.connect(settings.db_path + '/slork.sqlite')
+    conn = sqlite3.connect(settings.db_path + '/slork.sqlite')
     conn.row_factory = sqlite3.Row
     cur = conn.cursor()