Skip to content

Commit

Permalink
Fix code style warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
revolter committed Aug 16, 2018
1 parent 61c4e82 commit 6308d9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fabfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from fabric.api import cd, env, put, run, task

import configparser
import sys

from fabric.api import cd, env, put, run, task

try:
config = configparser.ConfigParser()
Expand All @@ -15,7 +16,7 @@
except configparser.Error as error:
print('Config error: {}'.format(error))

exit(1)
sys.exit(1)

env.project_name = 'DexRoBot'
env.source_filenames = [
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pep8]
ignore = E501

0 comments on commit 6308d9d

Please sign in to comment.