Skip to content

Commit

Permalink
pep8 cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoît HERVIER committed Jan 27, 2013
1 parent 50a424f commit 25d0f0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion make.py
Expand Up @@ -66,7 +66,8 @@
#Remove temporary files
for root, dirs, fs in os.walk(os.path.join(os.path.dirname(__file__),
p.name)):
for filename in [filename for filename in fs if filename.endswith(('~', '.pyo', '.pyc', ))]:
for filename in [filename for filename
in fs if filename.endswith(('~', '.pyo', '.pyc', ))]:
os.remove(os.path.join(root, filename))

#Include byte compiled files, so do not remove it at packaging
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -26,7 +26,7 @@
print files

setup(name='khtnotes',
version='2.21.0',
version='3.0.0',
license='GNU GPLv3',
description='A note taking application with ownCloud sync',
long_description="A note taking application for Harmattan devices"
Expand Down

0 comments on commit 25d0f0f

Please sign in to comment.