Skip to content

Commit

Permalink
Support spaces in app name
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann committed Apr 27, 2019
1 parent f71792a commit 86b4c0e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fbs/builtin_commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 86b4c0e

Please sign in to comment.