Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
danielecook committed Sep 16, 2015
1 parent 6a72ef7 commit 33b01c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gg_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pprint import pprint as pp
from workflow.background import run_in_background, is_running

__version__ = '0.1'
__version__ = '0.2'


def main(wf):
Expand Down
3 changes: 1 addition & 2 deletions gist.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pprint import pprint as pp
from workflow.background import run_in_background, is_running

__version__ = '0.1'
__version__ = '0.2'


def main(wf):
Expand Down Expand Up @@ -113,7 +113,6 @@ def main(wf):
if search != "":
results = wf.filter(search, results, lambda x: x["description"] + ' '.join(x["tags"]) + ' '.join(x["files"].keys()))
for gist in results:
#print gists
for filename, f in gist["files"].items():
if lang == "" or f["language"] == lang:
wf.add_item(gist["description"],
Expand Down
2 changes: 1 addition & 1 deletion update_gists.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
from workflow import Workflow, web

__version__ = '0.1'
__version__ = '0.2'


def get_gist():
Expand Down

0 comments on commit 33b01c3

Please sign in to comment.