Compare commits
No commits in common. "d729d69ea360cc802e02ea84d96a1db1fe78ea53" and "c67179cdbac12c9b314ea319aced11f60a26a0b9" have entirely different histories.
d729d69ea3
...
c67179cdba
@ -16,7 +16,6 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
import io
|
||||
import logging
|
||||
import sys
|
||||
|
||||
@ -43,15 +42,6 @@ class Console():
|
||||
self.pluginloader = PluginLoader(self)
|
||||
self.pluginloader.load_plugins()
|
||||
|
||||
# Configure stdin and stdout newlines and encoding
|
||||
# when invoked by ax25:
|
||||
if not sys.stdin.isatty():
|
||||
sys.stdout = io.TextIOWrapper(sys.stdout.detach(),
|
||||
newline=None)
|
||||
|
||||
sys.stdin = io.TextIOWrapper(sys.stdin.detach(),
|
||||
newline=None)
|
||||
|
||||
#
|
||||
# Input and output
|
||||
#
|
||||
@ -112,7 +102,6 @@ class Console():
|
||||
|
||||
"""
|
||||
sys.stdout.write(output + '\r\n')
|
||||
sys.stdout.flush()
|
||||
|
||||
def print_configuration(self) -> None:
|
||||
"""Print the current running configuration.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user