Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
lindt committed Aug 23, 2016
1 parent 7d2bed9 commit c5da29f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ end
desc 'Checks style'
task audit: :rubocop
task :audit do
ignores = %w(D100 D101 D102 D103 E501 I201)
ignores = %w(D100 D101 D102 D103 D104 E501 I201)

FILES = FileList[%w(bin/compose_plantuml compose_plantuml/*.py setup.py)]
sh "flake8 --ignore='#{ignores * ','}' #{FILES}"
Expand Down
2 changes: 1 addition & 1 deletion bin/compose_plantuml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if __name__ == '__main__':
plantuml = ComposePlantuml()

if not args.link_graph and not args.boundaries and not args.port_boundaries and not args.volume_boundaries:
print('specify an output option. link_graph or boundaries')
print('specify an output option. e.g.: link_graph or boundaries')
sys.exit(1)

def execute(data):
Expand Down

0 comments on commit c5da29f

Please sign in to comment.