Skip to content

Commit

Permalink
Fix conversions of units with uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
deanishe committed Aug 19, 2014
1 parent 10ac56e commit f50fea6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified Convert.alfredworkflow
Binary file not shown.
2 changes: 1 addition & 1 deletion src/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def main(wf):
log = wf.logger
if not len(wf.args):
return 1
query = wf.args[0].lower()
query = wf.args[0] # .lower()
log.debug('query : %s', query)

# Load cached data
Expand Down
2 changes: 1 addition & 1 deletion src/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1
1.2

0 comments on commit f50fea6

Please sign in to comment.