From 15793347fba61c78b6fbec33c9b2125d0bceb113 Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Sun, 26 Jan 2014 13:24:52 +0100 Subject: [PATCH] Fixed whitespace in api example --- dpaste/templates/dpaste/about.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpaste/templates/dpaste/about.html b/dpaste/templates/dpaste/about.html index aa7d730..b8fd609 100644 --- a/dpaste/templates/dpaste/about.html +++ b/dpaste/templates/dpaste/about.html @@ -19,7 +19,7 @@

API

{# Just put the script in dpaste and copy the source node #} -
  1. #!/usr/bin/env python
  2.  
  3. import urllib
  4. import urllib2
  5. import sys
  6.  
  7. def paste_code():
  8. request = urllib2.Request(
  9. 'https://dpaste.de/api/',
  10. urllib.urlencode([('content', sys.stdin.read())]),
  11. )
  12. response = urllib2.urlopen(request)
  13. # Strip surrounding quotes (NB: response has no trailing newline)
  14. print response.read()[1:-1]
  15.  
  16. if __name__ == '__main__':
  17. paste_code()
+
  1. #!/usr/bin/env python
  2.  
  3. import urllib
  4. import urllib2
  5. import sys
  6.  
  7. def paste_code():
  8.    request = urllib2.Request(
  9.        'https://dpaste.de/api/',
  10.        urllib.urlencode([('content', sys.stdin.read())]),
  11.    )
  12.    response = urllib2.urlopen(request)
  13.    # Strip surrounding quotes (NB: response has no trailing newline)
  14.    print response.read()[1:-1]
  15.  
  16. if __name__ == '__main__':
  17.    paste_code()

Save this script in /usr/local/bin/dpaste and chmod +x ..filepath.