Skip to content

Commit

Permalink
sparkup.py: re-add python2 shebang line, chmod +x
Browse files Browse the repository at this point in the history
Ref: #72 (this fix was lost)
  • Loading branch information
blueyed committed Oct 7, 2013
1 parent 615f1c8 commit 69ff992
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sparkup.py
100644 → 100755
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
version = "0.1.3"

import os import os
import fileinput import fileinput
import getopt import getopt
Expand Down Expand Up @@ -551,9 +555,9 @@ def __init__(self, token=None, parent=None, count=None, local_count=None, \
if self.populate: self._populate() if self.populate: self._populate()


def render(self): def render(self):
"""renders the element, along with it's subelements, into html code. """Renders the element, along with it's subelements, into HTML code.
[grouped under "rendering methods"] [Grouped under "Rendering methods"]
""" """


output = "" output = ""
Expand Down

0 comments on commit 69ff992

Please sign in to comment.