Fix inconsistent three-space indentation

This commit is contained in:
Mike Kazantsev 2012-10-20 21:45:14 +06:00 committed by fraggod@sacrilege
parent 492f168124
commit 8b07ea157d
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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: