Skip to content

Commit e4e9719

Browse files
committed
Resolving issue OctoPrint#3253
Added myself to the AUTHORS.md file
1 parent 0e67906 commit e4e9719

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

AUTHORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ date of first contribution):
107107
* [Steven Spungin](https://github.com/flamenco)
108108
* [Piotr Usewicz](https://github.com/pusewicz)
109109
* [Aliaksei Pilko](https://github.com/aliaksei135)
110+
* [Ben Yarmis](https://github.com/byarmis)
110111

111112
OctoPrint started off as a fork of [Cura](https://github.com/daid/Cura) by
112113
[Daid Braam](https://github.com/daid). Parts of its communication layer and

src/octoprint/util/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def get_python_version_string():
123123

124124
# Debian has the python version set to 2.7.15+ which is not PEP440 compliant (bug 914072)
125125
if version_string.endswith("+"):
126-
version_string = python_version[:-1]
126+
version_string = version_string[:-1]
127127

128128
return version_string
129129

0 commit comments

Comments
 (0)