diff --git a/CurrentVersion.props b/CurrentVersion.props
index 26758f45b5..d7ffeb0ec7 100644
--- a/CurrentVersion.props
+++ b/CurrentVersion.props
@@ -6,7 +6,7 @@
6
candidate
- 1
+ 2
0
diff --git a/Languages/IronPython/IronPythonCompiler/ConsoleOps.cs b/Languages/IronPython/IronPythonCompiler/ConsoleOps.cs
index 4711ce2ca2..6ee41a020f 100644
--- a/Languages/IronPython/IronPythonCompiler/ConsoleOps.cs
+++ b/Languages/IronPython/IronPythonCompiler/ConsoleOps.cs
@@ -39,7 +39,7 @@ public static void Info(string format, params object[] args) {
public static void Usage(bool doExit = false) {
Console.WriteLine(@"ipyc: The Command-Line IronPython Compiler
-Usage: ipc.exe [options] file [file ...]
+Usage: ipyc.exe [options] file [file ...]
Options:
/out:output_file Output file name (default is main_file.)
@@ -60,7 +60,7 @@ public static void Usage(bool doExit = false) {
/win32icon:file.ico Sets file.ico as the icon for the executable
Example:
- ipc.exe /main:Program.py Form.py /target:winexe");
+ ipyc.exe /main:Program.py Form.py /target:winexe");
if (doExit) {
Environment.Exit(0);
}