From 86b4c0e9029dbc1f35beb4eac03e866e9dd6c25e Mon Sep 17 00:00:00 2001 From: Michael Herrmann Date: Sat, 27 Apr 2019 12:43:10 +0200 Subject: [PATCH] Support spaces in app name --- fbs/builtin_commands/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/fbs/builtin_commands/__init__.py b/fbs/builtin_commands/__init__.py index a4bebd2..6602f5c 100644 --- a/fbs/builtin_commands/__init__.py +++ b/fbs/builtin_commands/__init__.py @@ -34,9 +34,6 @@ def startproject(): if exists('src'): raise FbsError('The src/ directory already exists. Aborting.') app = prompt_for_value('App name', default='MyApp') - while ' ' in app: - print('Sorry, spaces in the app name are not yet supported.') - app = prompt_for_value('App name', default='MyApp') user = getuser().title() author = prompt_for_value('Author', default=user) has_pyqt = _has_module('PyQt5')