Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lalsuite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jacob Buchanan
lalsuite
Commits
a8d9a6cc
Unverified
Commit
a8d9a6cc
authored
1 year ago
by
Duncan Macleod
Browse files
Options
Downloads
Patches
Plain Diff
fix issue template python snippet
closes #685
parent
6da3525c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab/issue_templates/Bug.md
+12
-2
12 additions, 2 deletions
.gitlab/issue_templates/Bug.md
with
12 additions
and
2 deletions
.gitlab/issue_templates/Bug.md
+
12
−
2
View file @
a8d9a6cc
...
...
@@ -18,12 +18,22 @@ Error tracebacks, and screenshots (if applicable) are very helpful.
<details>
<summary>
System information
</summary>
<!-- please run run the following command in your terminal and include the output below:
python -c "import platform, socket, sys; system = platform.system(); print('
\n
Python: {}'.format(sys.version.splitlines()[0])); print('Operating system: {}'.format(' '.join(platform.linux_distribution()) if system == 'Linux' else 'macOS {}'.format(platform.mac_ver()[0]))); print('Hostname: {}'.format(socket.getfqdn()))"
python3 -c "
import platform, socket, sys
system = platform.system()
print(f'Hostname {socket.getfqdn()}');
try:
OS = platform.freedesktop_os_release()['PRETTY_NAME']
except Exception:
OS = ''
print(f'Platform: {platform.platform()} ({OS})')
print(f'Python: {sys.version.splitlines()[0]}');
"
-->
```
Hostname:
Operating syste
m:
Platfor
m:
Python version:
```
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment