Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,8 @@ def add_space(name):
|
|
12 |
client = Client(name)
|
13 |
spaces.append(client)
|
14 |
return "success"
|
15 |
-
except:
|
|
|
16 |
return "failed"
|
17 |
def run():
|
18 |
global spaces
|
|
|
12 |
client = Client(name)
|
13 |
spaces.append(client)
|
14 |
return "success"
|
15 |
+
except Exception as e:
|
16 |
+
print(e)
|
17 |
return "failed"
|
18 |
def run():
|
19 |
global spaces
|