diff --git a/controllers/debug.py b/controllers/debug.py
index 00e415cb97c79010ef237d1caa6af5f1793f9b5b..33c82af099fc6b6411f5cb1d880949647ce9fd55 100644
--- a/controllers/debug.py
+++ b/controllers/debug.py
@@ -1,3 +1,2 @@
-# -*- coding: utf-8 -*-
-# try something like
-def index(): return dict(message="hello from debug.py")
\ No newline at end of file
+def index():
+    return dict()
diff --git a/views/debug/index.html b/views/debug/index.html
index 934b6e0be5ccb6063d598775fe3802168524f87f..7886bfef6c2982cf808c188cd294457e46eba4e1 100644
--- a/views/debug/index.html
+++ b/views/debug/index.html
@@ -8,14 +8,14 @@
             <u>You</u><br>
             <form>
                 URL: <input type="text" name="url" id="url" value="{{=URL('room','create')}}"><br>
-                <textarea rows=20 cols=60 id="input" placeholder="Your JSON parameters"></textarea><br>
+                <textarea rows=20 cols=80 id="input" placeholder="Your JSON parameters"></textarea><br>
                 <input type="submit">
             </form>
         </td>
         <td style="vertical-align: top">
             <u>Server</u><br>
             Status-Code<input type="text" id="status" readonly=""><br>
-            <textarea readonly="" rows=20 cols=60 id="server" placeholder="Server Response"></textarea><br>
+            <textarea readonly="" rows=20 cols=80 id="server" placeholder="Server Response"></textarea><br>
         </td>
     </tr>
 </table>