Skip to content

Commit f240e0b

Browse files
committed
removed tabs (inspect tool)
[SVN r34720]
1 parent 4081605 commit f240e0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/exec.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ object exec_file(str filename, object global, object local)
3434
if (!pyfile) throw std::invalid_argument(std::string(f) + " : no such file");
3535
python::handle<> file(pyfile);
3636
PyObject* result = PyRun_File(PyFile_AsFile(file.get()),
37-
f,
38-
Py_file_input,
39-
global.ptr(), local.ptr());
37+
f,
38+
Py_file_input,
39+
global.ptr(), local.ptr());
4040
if (!result) throw_error_already_set();
4141
return object(detail::new_reference(result));
4242
}

0 commit comments

Comments
 (0)