Skip to content

Commit

Permalink
Fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwoods committed May 23, 2018
1 parent 640c1f8 commit 54a6a5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion raven/scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ def get_uid():
return None
try:
return pwd.getpwuid(os.geteuid())[0]
except KeyError: # Sometimes fails in containers
except KeyError: # Sometimes fails in containers
return None


def send_test_message(client, options):
sys.stdout.write("Client configuration:\n")
for k in ('base_url', 'project', 'public_key', 'secret_key'):
Expand Down

0 comments on commit 54a6a5f

Please sign in to comment.