mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 03:22:39 +01:00
Fix inconsistent three-space indentation
This commit is contained in:
parent
492f168124
commit
8b07ea157d
2 changed files with 2 additions and 2 deletions
|
|
@ -489,7 +489,7 @@ def manual_id(singleton):
|
|||
# Find the first thing that looks like a UUID/MBID.
|
||||
match = re.search('[a-f0-9]{8}(-[a-f0-9]{4}){3}-[a-f0-9]{12}', entry)
|
||||
if match:
|
||||
return match.group()
|
||||
return match.group()
|
||||
else:
|
||||
log.error('Invalid MBID.')
|
||||
return None
|
||||
|
|
|
|||
|
|
@ -432,7 +432,7 @@ if __name__ == '__main__':
|
|||
print('processing %i' % num)
|
||||
time.sleep(3)
|
||||
if num == 3:
|
||||
raise Exception()
|
||||
raise Exception()
|
||||
num = yield num * 2
|
||||
def exc_consume():
|
||||
while True:
|
||||
|
|
|
|||
Loading…
Reference in a new issue