Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
albu-diku committed Oct 30, 2024
1 parent ee22031 commit 8277ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def _print_identity():
import os
import sys
python_version_string = sys.version.split(' ')[0]
mig_env = os.environ['MIG_ENV']
mig_env = os.environ.get('MIG_ENV', 'local')
print("running with MIG_ENV='%s' under Python %s" %
(mig_env, python_version_string))
print("")
Expand Down

0 comments on commit 8277ed5

Please sign in to comment.