Compare commits

...

3 Commits
2.0.6 ... 2.0.7

Author SHA1 Message Date
d7d033c908 Version bump 2014-05-28 21:02:27 -04:00
fa4b482832 Merge branch 'py3-fix' of github.com:chid/cheat into chid-py3-fix
* 'py3-fix' of github.com:chid/cheat:
  simple py3 import change
2014-05-28 21:00:52 -04:00
6a4414f538 simple py3 import change 2014-05-29 09:56:54 +10:00
3 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ from docopt import docopt
if __name__ == '__main__':
# parse the command-line options
options = docopt(__doc__, version='cheat 2.0.6')
options = docopt(__doc__, version='cheat 2.0.7')
# list directories
if options['--directories']:

View File

@ -1,3 +1,3 @@
import sheet
import sheets
import utils
from . import sheet
from . import sheets
from . import utils

View File

@ -3,7 +3,7 @@ import os
setup(
name = 'cheat',
version = '2.0.6',
version = '2.0.7',
author = 'Chris Lane',
author_email = 'chris@chris-allen-lane.com',
license = 'GPL3',