Merge pull request #112 from Parabot/bugfix/issue-111

[BUGFIX] Solving issue #111
This commit is contained in:
Jeroen Ketelaar
2016-10-16 20:57:40 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1,3 +1,4 @@
[![Stories in Ready](https://badge.waffle.io/Parabot/Parabot.png?label=ready&title=Ready)](https://waffle.io/Parabot/Parabot)
[![Build Status](https://travis-ci.org/Parabot/Parabot.svg?branch=master)](https://travis-ci.org/Parabot/Parabot)
# Parabot
+1 -1
View File
@@ -131,7 +131,7 @@ public final class Landing {
case "-proxy":
ProxyType type = ProxyType.valueOf(args[++i].toUpperCase());
if (type == null) {
System.err.println("Invalid proxy type:" + args[i]);
System.err.println("Invalid proxy type: " + args[i]);
System.exit(1);
return;
}