Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 54a6a5f

Browse files
committed
Fix flake8 error
1 parent 640c1f8 commit 54a6a5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

raven/scripts/runner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ def get_uid():
4242
return None
4343
try:
4444
return pwd.getpwuid(os.geteuid())[0]
45-
except KeyError: # Sometimes fails in containers
45+
except KeyError: # Sometimes fails in containers
4646
return None
4747

48+
4849
def send_test_message(client, options):
4950
sys.stdout.write("Client configuration:\n")
5051
for k in ('base_url', 'project', 'public_key', 'secret_key'):

0 commit comments

Comments
 (0)