Skip to content

Commit

Permalink
Merge pull request #573 from yandex/release
Browse files Browse the repository at this point in the history
 fix http resourses
  • Loading branch information
fomars committed Apr 25, 2018
2 parents 1d9a27a + 2838406 commit 4a61e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yandextank/stepper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def read_config(self):
self.ammo_file = self.get_option(self.OPTION_AMMOFILE)
self.ammo_type = self.get_option('ammo_type')
if self.ammo_file:
self.ammo_file = os.path.abspath(os.path.expanduser(self.ammo_file))
self.ammo_file = os.path.expanduser(self.ammo_file)
self.loop_limit = self.get_option(self.OPTION_LOOP)
self.ammo_limit = self.get_option("ammo_limit")

Expand Down

0 comments on commit 4a61e3d

Please sign in to comment.