Skip to content

Commit

Permalink
Merge pull request #41 from InfamousSYN/develop
Browse files Browse the repository at this point in the history
PR for v3.0.5 minor release
  • Loading branch information
InfamousSYN committed Dec 18, 2023
2 parents e1e2a92 + 04b9b1a commit d2abf57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import argparse

# application version
__version__ = "3.0.4"
__version__ = "3.0.5"

# application site
__location__ = "https://rogue.infamoussyn.com/"
Expand Down
4 changes: 2 additions & 2 deletions core/libs/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def set_driver(self):

@classmethod
def set_country(self):
self.country_code = "country_code={}".format(self.country_code) if self.country_code is not None else "#country_code=00"
self.country_code = "country_code={}".format(self.country_code) if (self.country_code is not None and self.country_code != '00') else "#country_code=00"

@classmethod
def check_80211d(self):
Expand Down Expand Up @@ -508,7 +508,7 @@ def set_options():
ieee80211_config.add_argument('--country',
dest='country_code',
type=str,
default=00,
default='00',
choices=config.rogue_country_options,
help='Configures of country of operation')

Expand Down

0 comments on commit d2abf57

Please sign in to comment.