Skip to content
This repository was archived by the owner on Feb 16, 2020. It is now read-only.

Commit 4db91e5

Browse files
committed
Merge branch 'remove-leading-slash' into 'master'
Removes leading slash from the `ix-ai` label See merge request ix.ai/etherscan-exporter!4
2 parents 42cca33 + 5282663 commit 4db91e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etherscan-exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def configure_logging():
3030
port=int(os.environ.get('GELF_PORT', 12201)),
3131
debug=True,
3232
include_extra_fields=True,
33-
_ix_id=os.path.splitext(sys.modules['__main__'].__file__)[0],
33+
_ix_id=os.path.splitext(sys.modules['__main__'].__file__)[0][1:], # sets it to 'etherscan-exporter'
3434
)
3535
LOG.addHandler(GELF)
3636
gelf_enabled = True

0 commit comments

Comments
 (0)