Skip to content

Commit

Permalink
whitespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi committed Nov 12, 2018
1 parent 848ac3b commit 9b3249b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BlenderUpdaterCLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def stop(self):
parser.add_argument('-b','--blender', help="Desired Blender version, either '-b 279' or '-b 28'", required=True, type=str)
parser.add_argument('-a','--architecture', help="Architecture ('x86' or 'x64'). If omitted, it will autodetect current architecture.", type=str)
parser.add_argument('-o','--operatingsystem', help="Operating system. 'osx', 'linux' or 'windows'. If omitted, it will autodetect current OS.", type=str)
parser.add_argument('-y', '--yes', help="Install even when version already installed", action="store_true")
parser.add_argument('-n', '--no', help="Don't install when version already installed", action="store_true")
parser.add_argument('-y','--yes', help="Install even when version already installed", action="store_true")
parser.add_argument('-n','--no', help="Don't install when version already installed", action="store_true")
parser.add_argument('-r','--run', help="Run downloaded Blender version when finished", action="store_true")
parser.add_argument('-v','--version', action='version', version='1.0', help="Print program version")
args = parser.parse_args()
Expand Down

0 comments on commit 9b3249b

Please sign in to comment.