From 34a2e206987b249f1fa710eba4c3bd682b8661a3 Mon Sep 17 00:00:00 2001
From: Kevin Alberts <kevin@kevinalberts.nl>
Date: Mon, 27 May 2019 23:51:13 +0200
Subject: [PATCH] fix indentation

---
 kuro/utils/general.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kuro/utils/general.py b/kuro/utils/general.py
index 4e69b2f..3a9fcf3 100644
--- a/kuro/utils/general.py
+++ b/kuro/utils/general.py
@@ -154,8 +154,8 @@ def bluetooth_audio_sink():
     try:
         output = subprocess.check_output("pamixer --list-sinks".split()).decode("utf-8")
         output = [x for x in output.split('\n') if "blue" in x.lower()]
-        return -1
     except (subprocess.CalledProcessError, FileNotFoundError):
+        return -1
 
     sink = -1
     try: