Skip to content

Commit

Permalink
Fix new file analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonshineSG authored May 8, 2018
1 parent d12b0d6 commit 55307e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_multi_colors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def on_api_command(self, command, data):
self.save_regex(data.get('find_string'))

gcode_file = os.path.join(self._settings.global_get_basefolder('uploads'), data.get('file') )
gcode_file_multi = os.path.join(self._settings.global_get_basefolder('uploads'), self.rename(data.get('file')) )
gcode_file_multi = os.path.join(self._settings.global_get_basefolder('watched'), self.rename(data.get('file')) )
work_copy = "%s.tmp"%gcode_file

copyfile(gcode_file, work_copy)
Expand Down

0 comments on commit 55307e2

Please sign in to comment.