Skip to content

Commit 235ef84

Browse files
committed
fix inconsistent use of tabs and spaces in indentation
1 parent f8c46e9 commit 235ef84

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exiftool.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,10 @@ def execute(self, *params):
224224
output = b""
225225
fd = self._process.stdout.fileno()
226226
while not output[-32:].strip().endswith(sentinel):
227-
inputready,outputready,exceptready = select.select([fd],[],[])
228-
for i in inputready:
229-
if i == fd:
230-
output += os.read(fd, block_size)
227+
inputready,outputready,exceptready = select.select([fd],[],[])
228+
for i in inputready:
229+
if i == fd:
230+
output += os.read(fd, block_size)
231231
return output.strip()[:-len(sentinel)]
232232

233233
def execute_json(self, *params):

0 commit comments

Comments
 (0)