diff --git a/kytos/utils/napps.py b/kytos/utils/napps.py index 3ef3f32..8e9a9cd 100644 --- a/kytos/utils/napps.py +++ b/kytos/utils/napps.py @@ -321,8 +321,8 @@ def create_napp(cls, meta_package=False): print('--------------------------------------------------------------') print('Welcome to the bootstrap process of your NApp.') print('--------------------------------------------------------------') - print('In order to answer both the username and the napp name,') - print('You must follow this naming rules:') + print('In order to answer both the username and the NApp name,') + print('You must follow these naming rules:') print(' - name starts with a letter') print(' - name contains only letters, numbers or underscores') print(' - at least three characters') @@ -349,7 +349,7 @@ def create_napp(cls, meta_package=False): #: Creating ``__init__.py`` files with open(os.path.join(username, '__init__.py'), 'w') as init_file: - init_file.write(f'"""Napps for the user {username}.""""') + init_file.write(f'"""NApps for the user {username}.""""') os.makedirs(os.path.join(username, napp_name))