Skip to content

Commit

Permalink
Remove debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
linusg committed May 4, 2018
1 parent 78bfd87 commit 23c200f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history

## 1.0.5 (04.05.2018)

- Remove debug information

## 1.0.4 (04.01.2018)

- Add documentation and simplify README.md
Expand Down
2 changes: 1 addition & 1 deletion xbox360controller/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from xbox360controller.controller import Xbox360Controller

__author__ = 'Linus Groh'
__version__ = '1.0.4'
__version__ = '1.0.5'
__all__ = ['Xbox360Controller']
1 change: 0 additions & 1 deletion xbox360controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ def _get_event_file(self):
.format(idx=self.index))[0]
event_number = int(
os.path.basename(event_file_sysfs).replace('event', ''))
print(event_number)
return '/dev/input/event{number}'.format(number=event_number)

def _get_led_file(self):
Expand Down

0 comments on commit 23c200f

Please sign in to comment.