Fix the charset
[fwx] / main.py
diff --git a/main.py b/main.py
index f0bc2bc..d2d758a 100644 (file)
--- a/main.py
+++ b/main.py
@@ -1,11 +1,11 @@
-import phial
+import fwx
 
 def handler(request):
-    return phial.TextResponse(
+    return fwx.TextResponse(
         content='Hello, world\n',
     )
 
-app = phial.App(handler)
+app = fwx.App(handler)
 
 if __name__ == '__main__':
     from twisted.internet import reactor