代码
#!/usr/bin/python
import sys
import psycopg2
import psycopg2.extras
def init_pg94_from_sql_file(filename, connection):
file = open(filename, 'r')
sql = s = " ".join(file.readlines())
print "Start executing: " + filename + " at " + str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M")) + "\n" + sql
cursor = connection.cursor()
cursor.execute(sql)
connection.commit()
cursor.close()
但我得到
File "9.7.2015.py", line 14
cursor.close()
^
IndentationError: unexpected indent
这很奇怪,因为我似乎没有任何缩进问题。
你怎么能处理这种意想不到的缩进挑战?
答案 0 :(得分:1)
Observable
行中有一个标签,前面的标签只有前导空格。这打破了缩进。
一个好的解决方案是用四个空格替换所有标签。
答案 1 :(得分:0)
要用四个空格替换制表符,您可以使用sed修改文件:
sed -ir 's/\t/ /g' python_w_tabs.py
这将修改您的文件,但如果您想在覆盖之前进行验证,请尝试:
cat python_w_tabs.py | sed -r 's/\t/ /g' > python_wo_tabs.py
此外,这是与gnu sed,所以如果你在Mac上,它可能会有所不同,我不知道Windows。