Skip to content

Commit

Permalink
Replace update symbol with "+" (to eliminate performance degradation)
Browse files Browse the repository at this point in the history
  • Loading branch information
fedosov committed Dec 2, 2013
1 parent 73233b2 commit 6ede690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions updates.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = "Mikhail Fedosov ([email protected])"
__version__ = "0.1.3.7"
__version__ = "0.1.3.8"

# http://code.activestate.com/recipes/577708-check-for-package-updates-on-pypi-works-best-in-pi/
# http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python
Expand Down Expand Up @@ -35,7 +35,7 @@ class symbols:
""" Status symbols
"""
FAIL = u"✖ "
UPDATE = u" "
UPDATE = u"+ "
OK = u"✓ "

@classmethod
Expand Down

0 comments on commit 6ede690

Please sign in to comment.