From 1aba72f49a0b53b89c69f2936097b35253a7bf4c Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Thu, 6 Jun 2013 10:44:03 -0400 Subject: [PATCH] Add 'import sys' to API example. (imported from commit e61583e72d01dbd112c84756dacb1af2b314ac29) --- templates/zephyr/api.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/zephyr/api.html b/templates/zephyr/api.html index dd38e87361..1c3cd46c56 100644 --- a/templates/zephyr/api.html +++ b/templates/zephyr/api.html @@ -86,6 +86,8 @@ to pull out the resulting HTML :)
#!/usr/bin/env python
 
 import humbug
+import sys
+
 # Keyword arguments 'email' and 'api_key' are optional if you are using ~/.humbugrc
 client = humbug.Client(email="othello-bot@example.com",
                        api_key="a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5")