Skip to content

Commit

Permalink
Autogenerated - Upstream 1679283
Browse files Browse the repository at this point in the history
  • Loading branch information
Klippy-Tools-Bot committed Jun 23, 2024
1 parent e2da55f commit 2bda9fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion klippy/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
be2f9be
1679283
2 changes: 1 addition & 1 deletion klippy/klippy.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def load_object(self, config, section, default=configfile.sentinel):
module_name = module_parts[0]
if '.' in module_name:
# A module is considered external to klipper if its name includes at least one dot
module_fullname = module_name
module_fullname = module_name.rstrip('.')
else:
module_fullname = 'klippy.extras.' + module_name
py_name = os.path.join(os.path.dirname(__file__),
Expand Down
2 changes: 1 addition & 1 deletion klippy/klippy.py.orig
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class Printer:
module_name = module_parts[0]
if '.' in module_name:
# A module is considered external to klipper if its name includes at least one dot
module_fullname = module_name
module_fullname = module_name.rstrip('.')
else:
module_fullname = 'extras.' + module_name
py_name = os.path.join(os.path.dirname(__file__),
Expand Down

0 comments on commit 2bda9fd

Please sign in to comment.