Space-Face commited on
Commit
d1b89a7
·
verified ·
1 Parent(s): 41d3b75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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