-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a check to the nature of the package #4
base: master
Are you sure you want to change the base?
Conversation
core/checks/kind.py
Outdated
"or to remove the files from the package? (2) ") | ||
if ans == 1: | ||
super().edit(_) | ||
# elif ans == 2: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Old comments
core/package.py
Outdated
@@ -75,6 +77,7 @@ def create_nest_file(self): | |||
os.remove('data.tar.gz') | |||
new_path = f'{self.npf_path}.new' | |||
os.rename(os.path.join(self.cache, new_nest_file_path), new_path) | |||
log.s(f"New nest file is located at {new_path}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
log.s(f"New nest file is located at {new_path}") | |
log.s(f"New NPF is located at {new_path}") |
core/args.py
Outdated
@@ -2,7 +2,7 @@ | |||
import os | |||
import sys | |||
|
|||
global _args | |||
global _argst |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feels a lot like a mistake. Is it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
woops
No description provided.