Skip to content

Instantly share code, notes, and snippets.

@ebroder
ebroder / gist:2897961
Created June 8, 2012 20:22
monospace-django bug fix
diff --git a/monospace/views.py b/monospace/views.py
index beadc55..d587230 100644
--- a/monospace/views.py
+++ b/monospace/views.py
@@ -61,27 +61,30 @@ def register(request):
form = UserForm(request.POST)
if form.is_valid():
- customer = stripe.Customer.create(
- description = form.cleaned_data['email'],
#!/usr/bin/env python
import sys
lines = int(sys.stdin.readline().strip())
ciphertext = sys.stdin.read().split()
out = []